-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.95 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "luna",
"version": "0.9.7",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"mcp": "npx tsx mcp/bridge.ts",
"dev:mcp": "pnpm build && pnpm deploy:strip && pnpm deploy:size-check && wrangler dev --port 8788",
"dev:mcp:tunnel": "pnpm build && pnpm deploy:strip && pnpm deploy:size-check && run-p \"wrangler:serve\" \"tunnel:serve\"",
"wrangler:serve": "wrangler dev --port 8788",
"tunnel:serve": "cloudflared tunnel --url http://localhost:8788",
"deploy": "pnpm build && pnpm deploy:strip && pnpm deploy:size-check && wrangler deploy",
"deploy:strip": "find dist -name 'trueform_wasm*.wasm' -delete",
"deploy:size-check": "node scripts/check-deploy-size.mjs",
"lint": "eslint . --fix --cache",
"format": "prettier --write --experimental-cli src/"
},
"dependencies": {
"@nuxt/ui": "^4.7.1",
"@polydera/trueform": "^0.9.7",
"@vueuse/core": "^13.9.0",
"aria-hidden": "^1.2.6",
"fflate": "^0.8.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"three": "^0.182.0",
"vue": "^3.5.33",
"zod": "^4.4.1"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.12.2",
"@types/three": "^0.182.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.4",
"eslint-plugin-vue": "~10.5.1",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"typescript": "~5.9.3",
"vite": "^7.3.2",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.7",
"wrangler": "^4.86.0",
"ws": "^8.20.0"
}
}