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.3",
"@homer0/prettier-plugin-jsdoc": "^9.0.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@vitest/coverage-v8": "^2.1.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.8.0",
"tsup": "^8.3.0",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}