-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "controller-input",
"version": "0.3.4",
"description": "Unifies browser user input sources into a simple controller model, useful for loop driven applications like games",
"keywords": [
"keyboard",
"gamepad",
"mouse",
"controller",
"touch",
"pointer"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "webpack --config config/webpack.prod.js",
"lint": "eslint --ext .js,.ts,.tsx src/ --fix",
"start": "webpack --config config/webpack.dev.js --watch",
"prepare": "npm run build && npm run types",
"types": "tsc --declaration --emitDeclarationOnly"
},
"author": "Michal Jez",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.0",
"ts-loader": "^9.2.4",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0"
},
"files": [
"package.json",
"build",
"!build/index.html"
]
}