-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.17 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
61
62
63
64
65
{
"name": "duckengine",
"version": "2.1.0",
"description": "A 2D Game Engine for the web.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"maintainers": [
"ksplatdev <[email protected]>"
],
"scripts": {
"test": "npx open-cli https://codesandbox.io/s/duckengine-test-7gfbt?file=/src/scene.js",
"build": "bash scripts/build.sh",
"webpack": "npx webpack --config webpack.config.js",
"minify": "npx uglifyjs dist/index.js -o dist/index.min.js",
"build:docs": "npx typedoc src/ --out docs/ --exclude \"src/helper/*.ts\" --exclude \"src/helper/**/*.ts\" --exclude \"src/utils/*.ts\" --exclude \"src/base/*.ts\" --name \"DuckEngine\" --includeVersion --entryPointStrategy expand",
"format": "npx prettier --config .prettierrc --write \"src/**/*.ts\"",
"format:watch": "npx onchange \"src/**/*.ts\" \"*.json\" \"*.md\" \"examples/**/*.ts\" -- prettier --write --ignore-unknown {{changed}}",
"lint": "npx eslint -c .eslintrc.json src/",
"lint:watch": "npx onchange \"src/**/*.ts\" \"examples/**/*.ts\" -- eslint -c .eslintrc.json --fix {{changed}}",
"lint:fix": "npx eslint -c .eslintrc.json --fix src/",
"serve": "npx http-server docs/",
"checkout": "bash scripts/checkout.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksplatdev/DuckEngine.git"
},
"keywords": [
"Duck",
"Ducky",
"Engine",
"2d",
"game engine",
"simple",
"fast",
"web game engine",
"javascript game engine",
"performant"
],
"author": "Bleart Emini",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksplatdev/DuckEngine/issues"
},
"homepage": "https://github.com/ksplatdev/DuckEngine#readme",
"devDependencies": {
"@types/css-font-loading-module": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"express": "^4.17.1",
"onchange": "^7.1.0",
"open-cli": "^7.0.1",
"prettier": "^2.4.1",
"typedoc": "0.22.7",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.4.3",
"uglify-js": "^3.14.2",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"yarn": "^1.22.11"
}
}