-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.4 KB
/
package.json
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
{
"name": "node-agile-client",
"version": "0.0.6",
"description": "AgileConfig的node客户端",
"main": "./cjs/index.js",
"module": "./esm5/index.js",
"typings": "./types/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prebuild": "rimraf build",
"build": "pnpm run build:cjs && pnpm run build:esm5 && pnpm run build:types",
"build:esm5": "tsc --project tsconfig.esm5.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:types": "tsc --project tsconfig.types.json",
"postbuild": "cp LICENSE build/LICENSE && cp README.md build/README.md && cp package.json build/package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LetTTGACO/node-agile-client.git"
},
"tags": [
"agile"
],
"keywords": [
"配置中心"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LetTTGACO/node-agile-client/issues"
},
"homepage": "https://github.com/LetTTGACO/node-agile-client#readme",
"dependencies": {
"axios": "^0.26.1",
"fs-extra": "^10.1.0",
"md5": "^2.3.0",
"path": "^0.12.7",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/md5": "^2.3.2",
"@types/node": "^20.4.5",
"@types/ws": "^8.5.3",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}