-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "gnistre-engine",
"version": "1.0.0",
"description": "A simple 2D Game engine based on typescript for web",
"main": "dist/index.js",
"scripts": {
"build": "bash scripts/build.sh",
"webpack": "npx webpack --config webpack.config.js",
"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"
},
"typings": "dist/index.d.ts",
"keywords": [
"game-engine"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ordeninteractive/gnistre"
},
"bugs": {
"url": "https://github.com/ordeninteractive/gnistre/issues"
},
"author": "sjuhyeon",
"license": "MIT",
"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"
}
}