-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.38 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
{
"name": "umengine",
"version": "0.1.0",
"description": "Develop simple 2D games with umEngine using JavaScript/TypeScript to run your web browser.",
"main": "src/index.ts",
"types": "src/types/index.d.ts",
"type": "module",
"scripts": {
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --color --max-warnings=0",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix --color",
"build": "rimraf dist && rollup -c",
"build:dev": "rimraf dist && rollup -c -w",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/umrbrwn/umengine.git"
},
"author": "umrbrwn",
"license": "ISC",
"bugs": {
"url": "https://github.com/umrbrwn/umengine/issues"
},
"homepage": "https://github.com/umrbrwn/umengine#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.9.2",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.3.3"
}
}