-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "darker-engine-template",
"description": "ecs lightweight library",
"version": "2.7.10",
"author": "darkaqua",
"license": "MIT",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"repository": "https://github.com/darkaqua/darker-engine-template",
"scripts": {
"start": "webpack serve --host \"0.0.0.0\" --port 8080 --inline --progress --profile --content-base src/ --mode=development",
"build": "webpack --config webpack.config.js --mode production"
},
"keywords": [
"ecs",
"entity-component-system",
"entity",
"component",
"system",
"lightweight",
"library",
"functional",
"node",
"typescript"
],
"devDependencies": {
"@types/node": "14.14.37",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.1",
"source-map-loader": "2.0.1",
"ts-node": "9.1.1",
"typescript": "4.2.3",
"webpack": "5.28.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"darker-engine": "2.7.10",
"pixi.js": "6.0.1",
"ts-loader": "8.1.0"
}
}