-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@perrygamerpt/tcpshield-api-wrapper",
"version": "1.0.1",
"description": "Professional Node.js wrapper for the TCPShield REST API with ESM/CJS and TypeScript support.",
"license": "MIT",
"homepage": "https://github.com/PerryGamerPT/TCPShield_API_Wrapper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PerryGamerPT/TCPShield_API_Wrapper.git"
},
"bugs": {
"url": "https://github.com/PerryGamerPT/TCPShield_API_Wrapper/issues"
},
"type": "commonjs",
"sideEffects": false,
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.mjs",
"default": "./index.cjs"
}
},
"files": [
"index.cjs",
"index.mjs",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"tcpshield",
"api",
"wrapper",
"nodejs",
"minecraft",
"ddos",
"client"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepublishOnly": "node -e \"console.log('✓ CommonJS:', require('./index.cjs').TcpShieldClient.name)\" && node --input-type=module -e \"import('./index.mjs').then(m => console.log('✓ ESM:', m.TcpShieldClient.name))\"",
"validate": "npm run prepublishOnly",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
}
}