package.json
653 B · json · 27 lines
1{2 "name": "mrlynet",3 "private": true,4 "type": "module",5 "scripts": {6 "wasm": "bash ../scripts/wasm.sh",7 "dev": "bun scripts/dev.ts",8 "build": "bun scripts/site.ts",9 "push": "bun scripts/push.ts",10 "shots": "bun scripts/shots.ts",11 "clean": "rm -rf dist",12 "check": "bun check.ts",13 "test": "bun test ./kit",14 "figures": "bash ../scripts/figures.sh"15 },16 "dependencies": {17 "@shikijs/core": "^4.4.3",18 "@shikijs/engine-javascript": "^4.4.3",19 "@shikijs/langs": "^4.4.3",20 "react": "^19.2.8",21 "react-dom": "^19.2.8",22 "three": "^0.185.1"23 },24 "devDependencies": {25 "katex": "^0.18.5"26 }27}