-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "rpg2003-input-configurator",
"version": "1.0.0",
"description": "Allows configuration of keyboarad/joypad mappings in RPG Maker 2003",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache --ignore-path .gitignore src",
"lint:fix": "eslint --cache --fix --ignore-path .gitignore src",
"dev": "rollup -c -w & sirv public -D; kill $!",
"build": "rollup -c",
"start": "sirv public"
},
"author": "David \"Cherry\" Trapp",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.19.0",
"eslint-config": "^0.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-svelte3": "^4.0.0",
"rollup": "^2.76.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-svelte": "^7.1.0",
"sirv-cli": "^2.0.2",
"standard": "^17.0.0",
"svelte": "^3.49.0"
},
"type": "module"
}