-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
{
"name": "@wrkspc/root",
"private": true,
"version": "0.1.0",
"license": "FSL-1.1-ALv2",
"author": "",
"description": "",
"keywords": [],
"main": "index.js",
"workspaces": [
"pkgs/*",
"pkgs/parser/pkg",
"pkgs/types/pkgs/ts",
"subs/*/pkgs/*"
],
"scripts": {
"install/npm": "pnpm install",
"setup": "turbo run setup",
"setup/codex": "./scripts/setup-codex.sh",
"setup/vsc": "./scripts/setup-vsc.sh",
"all": "turbo run all",
"build": "turbo run build",
"root/types": "pnpm run types",
"root/types:watch": "pnpm run types:watch",
"types": "tsc --build",
"types:watch": "tsc --build --watch",
"test/rs": "cargo nextest run --no-fail-fast",
"test/rs:watch": "watchexec -c -e rs cargo nextest run --no-fail-fast",
"test/rs:review": "cargo insta review",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.8.7",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"packageManager": "pnpm@10.29.3"
}