-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.56 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
{
"name": "rux-web",
"version": "0.4.0",
"private": true,
"homepage": "https://rux-lang.dev",
"description": "Website for Rux programming language",
"license": "MIT",
"author": "Ivan Muzyka <[email protected]>",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"generate:hosting": "nuxt generate && node scripts/generate-sitemap.mjs",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"verify": "npm run verify:cli && npm run verify:routes && npm run verify:links && npm run verify:meta && npm run verify:render",
"sync:cli": "node scripts/sync-cli-reference.mjs",
"verify:cli": "node scripts/verify-cli.mjs",
"verify:routes": "node scripts/verify-routes.mjs .output/public",
"verify:links": "node scripts/verify-links.mjs .output/public",
"verify:meta": "node scripts/verify-meta.mjs",
"verify:render": "node scripts/check-render.mjs",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"test": "vitest run",
"test:quality": "node test/run-quality.mjs",
"test:hosting-build": "node test/hosting-build.mjs",
"supply-chain:test": "node --test scripts/*.test.mjs"
},
"devDependencies": {
"@iconify-json/logos": "^1.2.12",
"@iconify-json/lucide": "^1.2.121",
"@iconify-json/simple-icons": "^1.2.93",
"@iconify-json/vscode-icons": "^1.2.68",
"@lhci/cli": "^0.15.1",
"@nuxt/eslint": "^1.10.0",
"@nuxt/test-utils": "^3.0.0",
"@types/node": "26.1.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/test-utils": "^2.4.11",
"devalue": "^5.9.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^20.11.1",
"prettier": "^3.9.6",
"selfsigned": "^5.5.0",
"typescript": "^5.9.0",
"vitest": "^3.2.4",
"vue-tsc": "^3.1.0"
},
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.8",
"@lezer/highlight": "^1.2.3",
"@nuxt/content": "^3.15.2",
"@nuxt/ui": "^4.10.0",
"@nuxtjs/sitemap": "^8.3.2",
"@shikijs/langs": "^4.3.1",
"@shikijs/themes": "^4.3.1",
"motion-v": "^2.3.0",
"nuxt": "^4.5.1",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.3.1",
"unified": "^11.0.5"
},
"overrides": {
"tmp": "0.2.7",
"@puppeteer/browsers": "^3.2.0"
}
}