-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 6.5 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 6.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "neuroskill",
"version": "0.0.87",
"description": "",
"type": "module",
"scripts": {
"postinstall": "git config core.hooksPath .githooks 2>/dev/null || true",
"copy:neutts-samples": "bash scripts/copy-neutts-samples.sh",
"dev:guard": "npm run -s check:markdown-renderer",
"dev": "npm run -s dev:guard && vite dev",
"build": "npm run -s dev:guard && svelte-kit sync && vite build && npm run -s verify:tauri:frontend",
"test": "vitest run",
"test:watch": "vitest",
"test:rust": "bash scripts/test-fast.sh",
"test:rust:all": "bash scripts/test-fast.sh --all",
"test:llm:e2e": "cargo test -p skill-llm --features llm --test llm_e2e -- --nocapture",
"preview": "vite preview",
"check:markdown-renderer": "node scripts/check-markdown-renderer.js",
"check:daemon-invokes": "node scripts/check-daemon-invokes.js",
"audit:daemon-routes": "node scripts/audit-daemon-routes.js",
"verify:tauri:frontend": "node scripts/verify-tauri-frontend-structure.js",
"check:i18n": "npx tsx scripts/audit-i18n.ts --check",
"health": "node scripts/health.mjs",
"check:i18n:locales": "node scripts/check-critical-i18n-locales.js",
"check:i18n:critical": "npm run -s check:i18n:locales",
"check": "npm run -s check:markdown-renderer && npm run -s check:daemon-invokes && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "npm run -s dev:guard && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --ignore src-tauri --watch",
"tauri": "node scripts/tauri-build.js",
"tauri:flamegraph": "node scripts/tauri-flamegraph.js",
"tauri:build": "node scripts/tauri-build.js build",
"tauri:build:linux:arm64": "node scripts/tauri-build.js build --target aarch64-unknown-linux-gnu --bundles appimage --features llm-vulkan",
"tauri:build:linux:x64:native": "node scripts/tauri-build.js build --target x86_64-unknown-linux-gnu --bundles appimage --features llm-vulkan",
"tauri:build:linux:x64": "ALLOW_LINUX_CROSS=1 node scripts/tauri-build.js build --target x86_64-unknown-linux-gnu --bundles appimage --features llm-vulkan",
"package:linux:portable": "bash scripts/package-linux-dist.sh",
"package:linux:portable:arm64": "bash scripts/package-linux-dist.sh --target aarch64-unknown-linux-gnu",
"package:linux:portable:x64:native": "bash scripts/package-linux-dist.sh --target x86_64-unknown-linux-gnu",
"package:linux:portable:x64": "ALLOW_LINUX_CROSS=1 bash scripts/package-linux-dist.sh --target x86_64-unknown-linux-gnu",
"package:linux:system:arm64:native": "bash scripts/package-linux-system-bundles.sh --target aarch64-unknown-linux-gnu",
"package:linux:system:x64:native": "bash scripts/package-linux-system-bundles.sh --target x86_64-unknown-linux-gnu",
"tauri:build:mac": "node scripts/tauri-build.js build",
"tauri:build:mac:app": "node scripts/tauri-build.js build --no-bundle && bash scripts/assemble-macos-app.sh",
"tauri:build:mac:dmg": "node scripts/tauri-build.js build --no-bundle && bash scripts/assemble-macos-app.sh && bash scripts/create-macos-dmg.sh",
"tauri:build:win:nsis": "node scripts/tauri-build.js build --no-bundle && powershell -ExecutionPolicy Bypass -File scripts/create-windows-nsis.ps1",
"brew:cask:generate": "bash scripts/generate-homebrew-cask.sh",
"skill": "npx tsx cli.ts",
"sync:i18n": "npx tsx scripts/sync-i18n.ts",
"sync:i18n:fix": "npx tsx scripts/sync-i18n.ts --fix",
"sync:i18n:check": "npx tsx scripts/sync-i18n.ts --check",
"audit:i18n": "npx tsx scripts/audit-i18n.ts",
"audit:i18n:check": "npx tsx scripts/audit-i18n.ts --check",
"sync:llm:catalog": "node scripts/sync-llm-catalog.js --write",
"sync:llm:catalog:check": "node scripts/sync-llm-catalog.js --check",
"sync:readme:supported": "node scripts/sync-readme-supported.js",
"sync:readme:supported:check": "node scripts/sync-readme-supported.js --check",
"setup": "bash scripts/setup-dev.sh",
"setup:build-cache": "bash scripts/setup-build-cache.sh",
"setup:llama-prebuilt": "bash scripts/download-llama-prebuilt.sh",
"compile:changelog": "node scripts/compile-changelog.js",
"check:changelog": "node scripts/check-changelog-fragments.js",
"check:changelog:fix": "node scripts/check-changelog-fragments.js --fix",
"changes:new": "node scripts/new-changelog-fragment.js",
"screenshots": "node scripts/screenshots/take-screenshots.mjs",
"gifs": "node scripts/screenshots/take-gifs.mjs",
"bump": "node scripts/bump.js",
"bench:screenshot": "cargo run --release -p skill-screenshots --bin image_encode_bench",
"tag": "node scripts/tag.js",
"test:smoke": "bash scripts/smoke-test.sh",
"test:daemon-packaging": "bash scripts/test-daemon-packaging.sh",
"test:daemon-packaging:mac": "bash scripts/test-daemon-packaging.sh --os macos",
"test:daemon-packaging:linux": "bash scripts/test-daemon-packaging.sh --os linux",
"test:daemon-packaging:win": "powershell -ExecutionPolicy Bypass -File scripts/test-daemon-packaging.ps1",
"clean:rust": "node scripts/clean-rust.js",
"lint": "npx biome check src/ scripts/",
"lint:fix": "npx biome check --write src/ scripts/",
"format": "npx biome format --write src/ scripts/",
"format:check": "npx biome format src/ scripts/"
},
"license": "GPL-3.0-only",
"dependencies": {
"@tailwindcss/vite": "^4.2.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-updater": "^2",
"@threlte/core": "^8.4.0",
"@threlte/extras": "^9.8.1",
"@types/d3": "^7.4.3",
"@types/three": "^0.183.1",
"bits-ui": "^2.16.2",
"d3": "^7.9.0",
"maplibre-gl": "^5.21.1",
"marked": "^17.0.4",
"mdsvex": "^0.12.7",
"pmtiles": "^4.4.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.2.1",
"three": "^0.183.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tauri-apps/cli": "^2",
"@types/ws": "^8.18.1",
"bonjour-service": "^1.3.0",
"esbuild": "^0.28.0",
"gif-encoder-2": "^1.0.5",
"playwright": "^1.58.2",
"sharp": "^0.34.5",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^6.0.2",
"vite": "^8.0.4",
"vitest": "^4.0.18",
"ws": "^8.20.0"
},
"overrides": {
"cookie": "^1.0.2"
}
}