-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@digshare/script",
"version": "0.4.16",
"description": "DigShare Script SDK",
"repository": "https://github.com/digshare/digshare-script.git",
"license": "MIT",
"author": "Chengdu Enverse Technology Co., Ltd.",
"type": "module",
"exports": {
".": {
"types": "./bld/library/index.d.ts",
"default": "./bld/library/index.js"
},
"./x": {
"types": "./bld/x/index.d.ts",
"default": "./bld/x/index.js"
}
},
"bin": {
"dss": "./bin/run.js"
},
"scripts": {
"3": "pnpm install && pnpm dedupe && pnpm install",
"build": "rimraf ./bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"bare-test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm lint-prettier && pnpm build && pnpm lint && pnpm bare-test"
},
"oclif": {
"bin": "dss",
"dirname": "dss",
"commands": "./bld/cli/commands"
},
"dependencies": {
"@oclif/core": "^2.15.0",
"@oclif/plugin-help": "^5.2.20",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-virtual": "^3.0.2",
"@types/ms": "^0.7.33",
"@types/prompts": "^2.4.7",
"@types/qrcode": "^1.5.4",
"chalk": "^5.3.0",
"enhanced-resolve": "^5.15.0",
"entrance-decorator": "^0.4.0",
"find-up": "^6.3.0",
"ms": "^2.1.3",
"pkg-dir": "^8.0.0",
"prompts": "^2.4.2",
"qrcode": "^1.5.3",
"rollup": "^4.3.0",
"tslib": "^2.6.2",
"x-value": "^0.2.1"
},
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.14",
"@types/jest": "^29.5.7",
"@types/node": "18",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"run-in-every": "^0.2.0",
"typescript": "^5.2.2"
}
}