-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.38 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
{
"name": "docs",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": "^22.0.0"
},
"scripts": {
"init": "nuxt prepare",
"docs:build": "./scripts/generate.sh",
"docs:deploy": "bash ./scripts/deploy.sh",
"docs:preview": "bash ./scripts/preview.sh",
"docs:clean-up": "bash ./scripts/clean-up.sh",
"docs:generate-manual": "bash ./scripts/generate-manual/run.sh",
"docs:make-static-site": "bash ./scripts/make-static/run.sh .build/latest .build-static",
"docs:all": "npm run docs:clean-up && npm run docs:build && npm run docs:generate-manual && npm run docs:deploy",
"docs:dev": "yarn run nuxt:dev:no-autogen",
"nuxt:build": "nuxt build",
"nuxt:dev": "nuxt dev --port 3001",
"nuxt:dev:no-autogen": "NO_AUTOGEN=true nuxt dev --port 3001",
"nuxt:dev:watch": "nuxt dev --port 3001 --dotenv .env.development",
"nuxt:dev:no-autogen:watch": "NO_AUTOGEN=true nuxt dev --port 3001 --dotenv .env.development",
"nuxt:generate": "nuxt prepare && nuxt generate",
"nuxt:preview": "nuxt preview",
"nuxt:postinstall": "nuxt prepare",
"nuxt:prepare": "nuxt prepare",
"check-types": "nuxi typecheck",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"node-version": "node -v && npm -v",
"turbo:postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/content": "^3.7.1",
"@nuxt/eslint": "1.10.0",
"@nuxt/icon": "2.0.0",
"@nuxt/ui": "4.2.1",
"@nuxtjs/sitemap": "7.4.7",
"@repo/eslint-config": "0.0.0",
"@repo/markdown": "0.0.0",
"@repo/netlogo-docs": "0.0.0",
"@repo/nuxt-content-assets": "1.5.0",
"@repo/tailwind-config": "0.0.0",
"@repo/template": "0.0.0",
"@repo/typescript-config": "0.0.0",
"@repo/utils": "0.0.0",
"@repo/vue-ui": "1.0.0",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.18",
"@vueuse/core": "^14.1.0",
"better-sqlite3": "^12.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.31.0",
"minimatch": "^10.0.3",
"nuxt": "^4.1.2",
"nuxt-gtag": "4.1.0",
"nuxt-link-checker": "4.3.6",
"nuxt-og-image": "^5.1.12",
"nuxt-svgo": "4.2.6",
"radix-vue": "1.9.17",
"reka-ui": "^2.6.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.24",
"vue-router": "^4.6.3",
"yaml": "^2.8.1"
},
"devDependencies": {
"@iconify-json/bi": "^1.2.6",
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/fa6-solid": "^1.2.4",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/lucide": "^1.2.68",
"@iconify-json/material-icon-theme": "^1.2.34",
"@iconify-json/material-symbols": "^1.2.40",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/mingcute": "^1.2.5",
"@iconify-json/oui": "^1.2.6",
"@iconify-json/si": "^1.2.11",
"@iconify-json/simple-icons": "^1.2.54",
"@iconify-json/streamline": "^1.2.5",
"@nuxt/kit": "^4.2.1",
"@repo/nuxt-content-assets": "1.5.0",
"eslint-plugin-perfectionist": "^4.15.1",
"extend": "^3.0.2",
"fs-extra": "^11.3.0",
"fuse.js": "^7.1.0",
"pdf-creator-node": "^2.3.5",
"puppeteer": "^24.28.0",
"rehype-autolink-headings": "^7.1.0",
"remark-toc": "^9.0.0",
"sass": "^1.93.3",
"sharp": "^0.34.4",
"turbo-meta-utilities": "^1.0.1",
"typescript": "^5.4.0",
"zod": "^4.1.12"
}
}