-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 967 Bytes
/
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
{
"name": "mini-gl",
"version": "2.0.1",
"description": "2d webgl renderer like canvas",
"main": "./dist/mini-gl.js",
"scripts": {
"watch": "vite build --watch",
"build:esm": "rm -rf lib && tsc -p ./tsconfig.json --outDir lib --declaration",
"build": "vite build",
"doc": "typedoc ",
"build:all": "npm run build && npm run build:esm"
},
"types": "./lib/index.d.ts",
"files": [
"dist",
"public"
],
"author": "mizy.mz",
"license": "ISC",
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"webpack": "^5.90.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"gl-matrix": "^3.4.3"
},
"module": "lib/index.js"
}