-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.94 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
{
"name": "nullmenu",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.25.0",
"scripts": {
"dev": "vite dev",
"build": "node scripts/build-site.js",
"build:all": "node scripts/build-all.js",
"build:redirects": "node scripts/build-redirects.js",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --fail-on-warnings",
"check:content": "node scripts/validate-content.js",
"check:infra": "node scripts/validate-infra.js",
"check:build": "node scripts/validate-builds.js",
"test": "pnpm test:unit && pnpm test:release && pnpm test:ui",
"test:unit": "node --test tests/unit/*.test.js",
"test:release": "node scripts/test-release-downloads.js",
"test:release:network": "node scripts/smoke-release-assets.js",
"test:ui": "pnpm build:all && pnpm build:redirects && pnpm check:build && playwright test",
"quality": "pnpm check && pnpm check:content && pnpm check:infra && pnpm test",
"dev:claw": "PUBLIC_SITE=claw vite dev --port 5174",
"dev:hub": "PUBLIC_SITE=hub vite dev --port 5175",
"dev:desk": "PUBLIC_SITE=desk vite dev --port 5176"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.61.1",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^22.20.1",
"@webgpu/types": "^0.1.71",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.69.3",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"gray-matter": "^4.0.3",
"marked": "^18.0.6",
"pagefind": "^1.5.2",
"shiki": "^4.3.1",
"svelte": "^5.56.5",
"svelte-check": "^4.7.3",
"typescript": "^6.0.3",
"vite": "^8.1.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nullclaw/nullmenu.git"
},
"homepage": "https://nullmenu.ai",
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"cookie": "0.7.2"
}
}
}