-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 791 Bytes
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
{
"name": "flowtty",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "npm run build -ws --if-present",
"articles-tui": "npm run articles-tui -w @flowtty/examples",
"things-tui": "npm run things-tui -w @flowtty/examples",
"things-tui:ddev": "npm run things-tui:ddev -w @flowtty/examples",
"inline-build-log": "npm run inline-build-log -w @flowtty/examples",
"docker-logs-tui": "npm run docker-logs-tui -w @flowtty/examples",
"docker-logs-tui:demo": "npm run docker-logs-tui:demo -w @flowtty/examples"
},
"devDependencies": {
"typescript": "^6",
"vitest": "^4"
}
}