-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.83 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "make3d",
"description": "Game FrameWork for JavaScript 3D WebGL Games",
"version": "1.27.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"start": "chef-express demo",
"start:docs": "chef-express docs",
"restart": "yarn build && yarn start",
"dev": "yarn build:esm && yarn start",
"demo": "yarn dev",
"docs": "yarn build",
"prebuild": "rimraf dist && bash create-index.sh",
"build": "tsc",
"postbuild": "yarn build:esm",
"prebuild:esm": "rimraf esm && bash create-index.sh",
"build:esm": "rollup -c",
"prebuild:docs": "rimraf docs",
"build:docs": "typedoc --customCss typedoc.css",
"postbuild:docs": "yarn docs-from-master && yarn demo-to-docs",
"demo-to-docs": "cp -r demo docs && cp esm/index.js docs/demo/make3d.js --remove-destination",
"docs-from-master-macos": "find docs -type f -name '*.html' -exec sed -i '' -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-master-linux": "find docs -type f -name '*.html' -exec sed -i -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-master": "yarn docs-from-master-macos || yarn docs-from-master-linux",
"lint": "eslint 'src/**/*.ts' --fix",
"format": "prettier src --write",
"precommit": "yarn lint && yarn build && yarn build:docs && yarn format",
"amend": "yarn precommit && git commit -a --am --no-edit",
"update": "npx npm-check-updates -u"
},
"files": [
"dist/*.*",
"dist/**/*.*",
"esm/index.*"
],
"license": "MIT",
"dependencies": {
"check2d": "^9.36.3",
"pixi-stats": "^5.1.7",
"rot-js": "^2.2.1",
"three": "^0.182.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.0.3",
"@types/three": "^0.182.0",
"chef-express": "^3.2.3",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"rollup": "^4.53.5",
"tslint": "^6.1.3",
"typedoc": "^0.28.15",
"typescript": "^5",
"typescript-eslint": "^8.50.0"
},
"keywords": [
"three",
"threejs",
"webgl",
"game-engine",
"game-engine-3d",
"game-framework",
"game-framework-3d",
"retro"
],
"repository": "git://github.com/nenjack/make3d.git",
"bugs": {
"url": "https://github.com/nenjack/make3d/issues"
},
"homepage": "https://nenjack.github.io/make3d/"
}