-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "pwgl",
"version": "7.0.3",
"main": "./dist/pwgl.umd.js",
"module": "dist/pwgl.es.js",
"description": "WebGL2 2D framework",
"homepage": "https://asjs-dev.github.io/pwgl/",
"repository": {
"type": "git",
"url": "https://github.com/asjs-dev/pwgl.git"
},
"author": "ASJS",
"license": "MIT",
"keywords": [
"webgl2",
"2d",
"renderer",
"game",
"graphics"
],
"files": [
"dist"
],
"scripts": {
"build:pwgl": "vite build --config vite.config.js",
"build:ext": "vite build --config extensions/vite.config.js",
"build:debugger": "vite build --config debugger/vite.config.js",
"build:legacy": "node scripts/build-pwgl.js",
"docs": "node scripts/build-docs.js",
"build:all": "npm run build:pwgl && npm run build:ext && npm run build:debugger && npm run docs",
"test": "vitest",
"test:run": "vitest run"
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.3",
"jsdoc": "^4.0.2",
"terser": "^5.46.1",
"vite": "^7.3.1",
"vitest": "^3.2.4"
}
}