-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
60
{
"name": "feng3d",
"version": "0.7.11",
"description": "Web3D Engine",
"standalone": true,
"main": "src/index.ts",
"types": "src/index.ts",
"module": "src/index.ts",
"dts": "dist/index.d.ts",
"author": "feng",
"license": "MIT",
"scripts": {
"clean": "rimraf \"{lib,dist,public}\"",
"build": "vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"types": "tsc && rollup -c && node scripts/indexdts.js",
"watch": "tsc -w",
"lint": "eslint --ext .js --ext .ts src test rollup.config.js --ignore-path .gitignore --max-warnings 0",
"lintfix": "npm run lint -- --fix",
"docs": "typedoc",
"release": "npm run clean && npm run lint && npm run docs && npm run build && npm run types && npm publish",
"prepublishOnly": "node scripts/prepublish.js",
"postpublish": "node scripts/postpublish.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/feng3d/feng3d.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"lib",
"src"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"@vitest/ui": "^0.26.2",
"cross-env": "7.0.3",
"eslint": "8.12.0",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-dts": "4.2.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-typescript": "1.0.1",
"tslib": "^2.4.0",
"typedoc": "0.23.23",
"typescript": "4.8.4",
"vite": "^3.0.7",
"vitest": "^0.26.2"
},
"dependencies": {
"@feng3d/earcut": "^0.0.1",
"@feng3d/path": "^0.0.3",
"stats.js": "^0.17.0"
}
}