-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 790 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "http://www.schemastore.org/package.json",
"name": "fractal-explorer",
"private": true,
"type": "module",
"module": "index.ts",
"scripts": {
"typecheck": "tsgo --noEmit",
"format": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"dev": "bun ./index.html",
"build": "bun run clean && bun build --outdir=./dist --sourcemap --minify --public-path '/fractal-explorer/' --metafile-md=./dist/meta.md ./index.html",
"clean": "bun -e \"require('node:fs').rmSync('./dist', { recursive: true, force: true });\""
},
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
"@webgpu/types": "latest",
"oxfmt": "^0.37.0",
"oxlint": "^1.52.0",
"typescript": "^5.9.3"
}
}