-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "method",
"type": "module",
"version": "0.1.0",
"scripts": {
"sync:method-data": "npm run generate:canvases && npm run copy:resources && npm run generate:method",
"dev": "npm run sync:method-data && astro dev",
"start": "npm run sync:method-data && astro dev",
"build": "npm run sync:method-data && npm run generate:icons && astro build",
"preview": "astro preview",
"astro": "astro",
"generate:method": "node scripts/generate-method-pages.mjs",
"generate:icons": "node scripts/generate-icon-imports.mjs",
"generate:canvases": "node scripts/generate-canvases.mjs",
"copy:resources": "node scripts/copy-resources.mjs"
},
"dependencies": {
"@astrojs/starlight": "^0.38.1",
"@astrojs/starlight-tailwind": "^5.0.0",
"@iconify-json/material-symbols-light": "^1.2.30",
"@tailwindcss/vite": "^4.1.11",
"apiops-cycles-method-data": "^3.4.2",
"astro": "^6.0.4",
"canvascreator": "^1.7.3",
"flat": "^6.0.1",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.11",
"unplugin-icons": "^22.1.0"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.29.0"
}
}