-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.6 KB
/
package.json
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
{
"name": "athena3d",
"version": "0.2.1",
"description": "3D Framework based on WebGPU.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"dev": "rollup -w -c",
"build": "NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Athena-js/athena.git"
},
"keywords": [
"webgpu",
"3d",
"framework",
"javascript"
],
"author": "Vincentn0700 <wang.yuanqiu007@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Athena-js/athena/issues"
},
"homepage": "https://athena.js.org",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@gltf-transform/core": "^2.0.5",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/gl-matrix": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@webgpu/types": "^0.1.20",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^8.10.0",
"gl-matrix": "^3.4.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^2.69.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ttypescript": "^1.5.13",
"typescript": "4.5"
}
}