-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 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
43
44
{
"name": "@txchen/tmu",
"version": "0.4.0",
"type": "module",
"bin": {
"tmu": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"CONTEXT.md",
"RELEASE_NOTES.md"
],
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"benchmark:playback": "npm run build && node dist/playback-benchmark.js",
"build": "tsdown && cp src/background-sounds.jxa dist/background-sounds.jxa",
"prepack": "npm run build",
"start": "node dist/cli.js",
"smoke:package": "vitest run tests/packaging-smoke.test.ts",
"test:integration": "vitest run tests/unix-daemon-client.test.ts tests/daemon-operations.test.ts tests/child-ownership.test.ts",
"test:unit": "vitest run --exclude tests/packaging-smoke.test.ts --exclude tests/unix-daemon-client.test.ts --exclude tests/daemon-operations.test.ts --exclude tests/child-ownership.test.ts",
"test": "vitest run --exclude tests/packaging-smoke.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vue-tui/runtime": "0.0.3",
"@vue/runtime-core": "3.5.39",
"vue": "3.5.39"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vue-tui/testing": "0.0.3",
"node-pty": "^1.1.0",
"tsdown": "^0.22.4",
"typescript": "^5.8.3",
"vitest": "^4.1.10"
}
}