-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.36 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
66
67
68
69
70
71
72
73
74
75
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"@koa/router": {
"path-to-regexp": "^6.3.0"
},
"elliptic": "^6.6.0",
"bn.js": "^4.12.3",
"crypto-js": "^4.2.0",
"serialize-javascript": "^7.0.5",
"lodash": "^4.18.1"
},
"scripts": {
"test": "lerna run test --stream && lerna run test:guomi --stream",
"bootstrap": "lerna clean --yes && npm install && npm run lint && npm run compile",
"lint": "lerna run lint --stream",
"compile": "lerna run compile --stream",
"build": "lerna run build --stream",
"lerna": "lerna",
"clean": "lerna run clean; lerna clean --yes",
"cleanall": "lerna run clean; lerna clean --yes && rm -fr node_modules package-lock.json",
"prettier": "pretty-quick --staged --no-restage --verbose --bail",
"pretty": "lerna run pretty-quick --stream",
"sync_version": "node scripts/sync_version.js",
"audit": "npm audit --audit-level=moderate",
"docs:dev": "vitepress dev docs",
"docs:width": "sed -ie 's/48rem/72rem/' node_modules/vitepress/dist/client/theme-default/components/Page.vue",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test:guomi": "lerna run test:guomi --stream",
"test:guomiapi": "lerna run test:guomiapi --stream",
"test:api": "lerna run test:api --stream"
},
"dependencies": {
"lerna": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^4.2.0",
"chai-json-schema": "^1.5.1",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"rollup": "^4.0.0",
"sinon": "^21.1.2",
"ts-jest": "^29.0.0",
"tslib": "^2.6.0",
"typed.js": "^2.0.12",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vpress-mdi-details": "^1.1.9",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
}
}