forked from layabox/LayaAir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.94 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.94 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "layaair",
"version": "3.3.0",
"description": "LayaAir3.3 Engine",
"main": "layaAir.config.js",
"scripts": {
"start": "npm-run-all clean copyShaders copyJsLibs --parallel watchShaders watchSamples",
"build": "node scripts/buildEngine.mjs",
"buildSamples": "node scripts/buildSamples.mjs",
"buildApi": "node scripts/buildApiDoc.mjs",
"watchShaders": "copy-and-watch --skip-initial-copy --watch src/**/*.{glsl,vs,fs} bin/tsc/",
"watchSamples": "cd ./src/samples && tsc -b --force --watch",
"clean": "rimraf ./bin/tsc",
"copyShaders": "copyfiles -u 1 ./src/**/*.{glsl,vs,fs} ./bin/tsc/",
"copyJsLibs": "copyfiles -s -u 2 ./src/layaAir/jsLibs/**/* ./bin/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"buildDocTool": "cd ./docTool && tsc",
"buildDocToolRun": "node ./docTool/dist/index.js",
"buildCanver": "npm run buildDocTool && npm run buildDocToolRun"
},
"author": "Layabox Inc.",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
"@types/node": "^20.12.7",
"@webgpu/types": "^0.1.60",
"conventional-changelog-cli": "^2.2.2",
"copy-and-watch": "^0.1.6",
"copyfiles": "^2.4.1",
"esbuild": "^0.20.1",
"glob": "^11.0.0",
"husky": "^8.0.2",
"minigame-api-typings": "^3.8.11",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^2.74.0",
"rollup-plugin-glsl": "^1.3.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.21.2",
"ts-morph": "^24.0.0",
"typedoc": "^0.26.0",
"typescript": "^4.9.5",
"webgpu": "^0.1.16"
},
"repository": {
"type": "git",
"url": "https://github.com/layabox/LayaAir"
},
"dependencies": {
"cors": "^2.8.5",
"i18next": "^23.11.2"
},
"bugs": {
"url": "https://ask.layaAir.com/"
}
}