-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.65 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
{
"name": "oxvgui",
"private": true,
"version": "0.2.11",
"license": "MIT",
"repository": "github:jonasgeiler/oxvgui",
"author": "Jonas Geiler",
"contributors": [
"XhmikosR <xhmikosr@gmail.com>",
"Jake Archibald"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "gulp dev",
"start": "pnpm run dev",
"check": "pnpm run '/^check:.*/'",
"check:cargo": "cargo fmt --check",
"check:biome": "biome check",
"check:stylelint": "stylelint src/css/",
"fix": "cargo fmt && biome check --fix && stylelint --fix src/css/",
"unsafe-fix": "biome check --unsafe --fix",
"build": "gulp build",
"preview": "live-server --verbose --no-browser --wait=15000 build",
"size": "size-limit",
"preversion": "node --eval='const f=`src/changelog.yaml`,v=process.env.npm_new_version;if(!require(`fs`).readFileSync(f,`utf8`).includes(v)){console.error(`No entry in ${f} for version ${v}\\n`);process.exit(1)}'"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-terser": "0.4.4",
"@size-limit/file": "11.2.0",
"@types/clean-css": "4.2.11",
"@types/gulp": "4.0.17",
"@types/gulp-htmlmin": "1.3.36",
"@types/gulp-if": "3.0.4",
"@types/gulp-sass": "5.0.4",
"@types/live-server": "1.2.3",
"@types/node": "22.15.18",
"@types/pako": "2.0.3",
"@types/prismjs": "1.26.5",
"@types/vinyl-source-stream": "0.0.34",
"clean-css": "5.3.3",
"gulp": "5.0.1",
"gulp-htmlmin": "5.0.1",
"gulp-if": "3.0.0",
"gulp-nunjucks": "5.1.0",
"gulp-sass": "5.1.0",
"live-server": "1.2.2",
"nanoevents": "7.0.1",
"pako": "2.1.0",
"prismjs": "1.30.0",
"rollup": "3.29.5",
"sass": "1.88.0",
"size-limit": "11.2.0",
"smol-toml": "1.3.4",
"stylelint": "14.16.1",
"stylelint-config-twbs-bootstrap": "7.0.0",
"vinyl-map": "1.0.2",
"vinyl-source-stream": "2.0.0",
"wasm-pack": "0.13.1",
"yaml": "2.8.1"
},
"size-limit": [
{
"path": "build/sw.js",
"limit": "1 kB"
},
{
"path": "build/js/page.js",
"limit": "8 kB"
},
{
"path": "build/js/gzip-worker.js",
"limit": "9 kB"
},
{
"path": "build/js/prism-worker.js",
"limit": "7 kB"
},
{
"path": "build/js/oxvg-worker.js",
"limit": "132 kB"
}
]
}