-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.04 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
{
"workspaces": [
"eslint-config",
"tsconfig",
"skiplang/prelude/ts/binding",
"skiplang/prelude/ts/wasm",
"skiplang/skdate/ts",
"skiplang/skjson/ts/binding",
"skiplang/skjson/ts/wasm",
"skipruntime-ts/api",
"skipruntime-ts/core",
"skipruntime-ts/helpers",
"skipruntime-ts/tests",
"skipruntime-ts/wasm",
"skipruntime-ts/addon",
"skipruntime-ts/runtime",
"skipruntime-ts/server",
"skipruntime-ts/examples",
"sql/ts",
"sql/ts/tests",
"examples/hackernews/reactive_service"
],
"devDependencies": {
"@types/node": "^22.10.0",
"@skiplabs/eslint-config": "^0.0.1",
"@skiplabs/tsconfig": "^0.0.1",
"eslint": "9.15.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2"
},
"scripts": {
"install": "npm run prepare --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
}
}