Files
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

38 lines
1.1 KiB
JSON

{
"name": "@antv/g-webgpu-engine",
"version": "0.7.2",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": true,
"files": [
"lib",
"es",
"README.md"
],
"scripts": {
"tsc": "tsc --project tsconfig.build.json",
"clean": "rimraf dist; rimraf es; rimraf lib;",
"build": "run-p build:*",
"build:cjs": "BABEL_ENV=cjs babel src --root-mode upward --out-dir lib --source-maps --extensions .ts,.tsx --delete-dir-on-start",
"build:esm": "BABEL_ENV=esm babel src --root-mode upward --out-dir es --source-maps --extensions .ts,.tsx --delete-dir-on-start",
"watch": "BABEL_ENV=esm babel src --watch --root-mode upward --out-dir es --source-maps --extensions .ts,.tsx --delete-dir-on-start"
},
"author": "xiaoiver",
"license": "ISC",
"dependencies": {
"@antv/g-webgpu-core": "^0.7.2",
"gl-matrix": "^3.1.0",
"lodash": "^4.17.15",
"regl": "^1.3.11"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@types/lodash": "^4.14.138"
},
"publishConfig": {
"access": "public"
}
}