forked from polkadot-api/polkadot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"experiments"
],
"type": "module",
"scripts": {
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"test": "pnpm -r test run",
"test:ci": "pnpm -r test:ci",
"prepare": "husky install"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"@fast-check/vitest": "^0.0.8",
"@vitest/coverage-v8": "^1.4.0",
"husky": "^9.0.11",
"lint-staged": "^12.5.0",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"tsup": "^8.0.2",
"turbo": "^1.13.0",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"packageManager": "[email protected]+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589",
"pnpm": {
"overrides": {
"smoldot": "2.0.23"
}
}
}