-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jx3api-ts",
"version": "3.1.0",
"description": "Type-safe Node.js SDK for JX3 API (jx3api.com), covering all HTTP endpoints and WebSocket events.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/cjs/types.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"require": "./dist/cjs/client.js"
},
"./socket": {
"types": "./dist/socket.d.ts",
"import": "./dist/socket.js",
"require": "./dist/cjs/socket.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json && printf '{\"type\":\"commonjs\"}\\n' > dist/cjs/package.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"jx3",
"jx3api",
"剑网3",
"sdk",
"typescript",
"websocket"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JX3API/JX3API-TS.git"
},
"homepage": "https://github.com/JX3API/JX3API-TS#readme",
"bugs": {
"url": "https://github.com/JX3API/JX3API-TS/issues"
},
"engines": {
"node": ">=22.0.0"
},
"license": "MIT",
"devDependencies": {
"typescript": "^5.7.0"
}
}