-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.07 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
{
"private": true,
"scripts": {
"fmt": "biome check --write .",
"tsc": "npm-run-all --sequential tsc:id tsc:cli",
"tsc:id": "cd ./packages/rowid && tsc --noEmit",
"tsc:cli": "cd ./packages/cli && tsc --noEmit",
"build": "npm-run-all --sequential build:id build:cli",
"build:id": "cd ./packages/rowid && tsup",
"build:cli": "cd ./packages/cli && tsup",
"test": "npm-run-all --sequential test:id test:cli",
"test:id": "cd ./tests/rowid && pnpm run test",
"test:cli": "cd ./tests/cli && pnpm run test",
"gen": "cd ./tests/gen && pnpm run gen",
"doc": "cd ./packages/rowid && typedoc",
"": ""
},
"devDependencies": {
"@apst/biome": "~0.1.0",
"@apst/tsconfig": "~0.1.0",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"npm-run-all": "^4.1.5",
"tsup": "^8.3.5",
"typedoc": "~0.27.5",
"typedoc-plugin-markdown": "^4.3.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
}
}