-
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.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 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": "winbit32-nt",
"version": "0.0.0",
"private": true,
"description": "Winbit32NT — the New Technology core of Winbit32: a Vite + npm workspaces monorepo whose kernel makes every desktop action an agent-callable command (our PowerShell moment).",
"license": "MIT",
"author": "Winbit32",
"homepage": "https://winbit32.com",
"repository": {
"type": "git",
"url": "https://github.com/FungeLLC/Winbit32NT.git"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run dev --workspace @winbit32/demo",
"mcp": "npm run start --workspace @winbit32/nt-mcp",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b",
"clean": "npm run clean --workspaces --if-present && rm -rf *.tsbuildinfo"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^6.0.3",
"jsdom": "^29.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^6.0.3",
"vitest": "^3.2.6"
}
}