-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 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
{
"name": "feng3d-examples",
"version": "0.6.0",
"description": "feng3d引擎示例",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run dev",
"clean": "rimraf \"{out,public,dist}\"",
"watch": "tsc -w",
"deploy": "npm run clean && npm run build && node scripts/deploy.js",
"release": "npm run clean && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/feng3d/examples.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"libs",
"out",
"resources",
"src",
"examples.html",
"examples.js",
"index.html",
"index.js"
],
"keywords": [
"feng3d",
"examples",
"webgl",
"3dEngine"
],
"author": "feng",
"license": "ISC",
"devDependencies": {
"copyfiles": "^2.4.1",
"fs-extra": "^10.1.0",
"rimraf": "3.0.2",
"typescript": "4.3.5",
"vite": "^5.0.0"
},
"dependencies": {
"feng3d": "^0.6.0"
}
}