forked from polkadot-api/polkadot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "root-polkadot-api",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"experiments"
],
"type": "module",
"scripts": {
"build-core": "pnpm -r build-core",
"build-external": "pnpm -r build-external",
"build": "pnpm turbo build-core && pnpm install && pnpm build-external",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"test": "pnpm -r test run",
"test:ci": "pnpm -r test:ci",
"prepare": "husky"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all",
"jsdocExperimentalFormatCommentsWithoutTags": true,
"plugins": [
"@homer0/prettier-plugin-jsdoc"
]
},
"devDependencies": {
"@fast-check/vitest": "^0.1.2",
"@homer0/prettier-plugin-jsdoc": "^9.0.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@vitest/coverage-v8": "^2.0.5",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"turbo": "^2.0.12",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}