-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.44 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.44 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
{
"name": "termisu-workspace",
"private": true,
"type": "module",
"packageManager": "bun@1.3.10",
"workspaces": [
"javascript/core",
"e2e"
],
"trustedDependencies": [
"@homebridge/node-pty-prebuilt-multiarch"
],
"scripts": {
"js:build": "bun run --cwd javascript/core build",
"js:check": "bun run --cwd javascript/core check",
"js:check:fix": "bun run --cwd javascript/core check:fix",
"js:dev": "bun run --cwd javascript/core dev",
"js:format": "bun run --cwd javascript/core format",
"js:format:check": "bun run --cwd javascript/core format:check",
"js:lint": "bun run --cwd javascript/core lint",
"js:lint:fix": "bun run --cwd javascript/core lint:fix",
"js:test": "bun run --cwd javascript/core test",
"js:typecheck": "bun run --cwd javascript/core typecheck",
"e2e:check": "bun run --cwd e2e check",
"e2e:check:fix": "bun run --cwd e2e check:fix",
"e2e:format": "bun run --cwd e2e format",
"e2e:format:check": "bun run --cwd e2e format:check",
"e2e:lint": "bun run --cwd e2e lint",
"e2e:lint:fix": "bun run --cwd e2e lint:fix",
"e2e:test": "bun run --cwd e2e test",
"e2e:test:trace": "bun run --cwd e2e test:trace",
"e2e:test:update": "bun run --cwd e2e test:update",
"e2e:typecheck": "bun run --cwd e2e typecheck"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"bun-types": "^1.3.9",
"rimraf": "^6.0.1",
"typescript": "^6.0.0"
}
}