-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.43 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
{
"private": true,
"scripts": {
"fmt": "biome check --write .",
"tsc": "npm-run-all --sequential tsc:shared tsc:node tsc:js",
"tsc:shared": "cd packages/shared && tsc --noEmit",
"tsc:node": "cd packages/node && tsc --noEmit",
"tsc:js": "cd packages/js && tsc --noEmit",
"build": "npm-run-all --sequential build:shared build:node build:js",
"build:shared": "cd packages/shared && tsup",
"build:node": "cd packages/node && tsup",
"build:js": "cd packages/js && tsup",
"test": "npm-run-all --sequential test:shared test:node test:js",
"test:shared": "cd ./tests/shared && pnpm run build",
"test:node": "cd ./tests/node && pnpm run test",
"test:js": "cd ./tests/js && pnpm run test",
"node": "cd ./examples/node && pnpm run dev",
"web": "cd ./examples/web && pnpm run dev",
"doc": "npm-run-all --parallel doc:js doc:node",
"doc:js": "cd ./packages/js && typedoc",
"doc:node": "cd ./packages/node && typedoc",
"": ""
},
"devDependencies": {
"@apst/biome": "~0.1.0",
"@apst/tsconfig": "~0.1.0",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.6",
"npm-run-all": "^4.1.5",
"tsup": "^8.3.5",
"typedoc": "~0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
}
}