-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.9 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
{
"name": "js",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"test-ui": "vitest watch --ui",
"coverage": "vitest run --coverage",
"format": "prettier --write packages/",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .ts --ignore-path .gitignore --fix",
"install:all": "pnpm install && for dir in packages/*/ packages/networks/*/; do if [ -d \"$dir\" ] && [ \"$(basename \"$dir\")\" != \"boilerplate\" ]; then cd \"$dir\" && pnpm install && cd -; fi; done",
"build:all": "for dir in packages/*/ packages/networks/*/; do if [ -f \"$dir/package.json\" ] && [ \"$(basename \"$dir\")\" != \"boilerplate\" ] && grep -q '\"build\":' \"$dir/package.json\" 2>/dev/null; then (cd \"$dir\" && pnpm run build) || exit 1; fi; done"
},
"devDependencies": {
"@rollup/plugin-strip": "^3.0.4",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitest/coverage-istanbul": "^1.5.3",
"@vitest/ui": "^1.6.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.8.1",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-node-polyfills": "^0.21.0",
"vitest": "^1.3.1"
},
"dependencies": {
"@multiplechain/utils": "^0.1.24"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}