-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"name": "wesl-site",
"type": "module",
"dependencies": {
"@weborigami/async-tree": "0.6.15",
"@weborigami/origami": "0.6.15",
"@weborigami/pagefind": "0.0.16",
"highlight.js": "^11.11.1",
"lygia": "^1.4.1",
"marked": "^17.0.5",
"marked-footnote": "^1.4.0",
"marked-gfm-heading-id": "^4.1.3",
"marked-highlight": "^2.2.3",
"marked-smartypants": "^1.1.11",
"wesl-plugin": "^0.6.73",
"wesl-rs-wasm": "https://github.com/mighdoll/big-files/raw/main/wesl-rs-wasm-0.3.2.tgz",
"wgsl-edit": "^0.0.24",
"wgsl-play": "^0.0.38"
},
"scripts": {
"build": "run-s build:packages build:demo build:site",
"build:demo": "cd src/ts && vite build",
"build:site": "ori copy src/site.ori, clear files:build",
"build:packages": "pnpm -r --if-present build",
"dev": "run-s start",
"deploy:site": "run-s build pages:deploy",
"pages:deploy": "wrangler pages deploy --project-name wesl-lang build",
"start": "run-s build:demo start:ori",
"start:ori": "ori serve watch ., =debug src/site.ori",
"typecheck": "tsgo --noEmit",
"preview": "run-s build serve",
"serve": "serve build"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260326.1",
"npm-run-all": "^4.1.5",
"serve": "^14.2.6",
"vite": "^8.0.3",
"wrangler": "^4.77.0"
}
}