-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "ff7r-data-editor",
"version": "1.0.0-b.8",
"description": "Final Fantasy VII Remake Data Editor",
"private": true,
"main": "main/index.js",
"engines": {
"node": "^12 || ^14 || >=16",
"npm": ">=7"
},
"scripts": {
"build": "run-s package clean zip",
"clean": "rimraf dist/ff7r-data-editor-win32-x64.zip",
"eslint": "eslint --fix .",
"lint": "run-s eslint prettier",
"package": "electron-packager . --out dist --overwrite",
"prebuild": "npm install",
"prepare": "husky install",
"prettier": "prettier --loglevel warn -w .",
"preversion": "npm run lint",
"start": "npx electron main/index.js",
"version": "git add CHANGELOG.md",
"zip": "7z a -tzip dist/ff7r-data-editor-win32-x64.zip ./dist/ff7r-data-editor-win32-x64/"
},
"author": "Jordan Tucker <[email protected]> (https://github.com/jordanbtucker)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jordanbtucker/ff7r-data-editor/issues"
},
"homepage": "https://github.com/jordanbtucker/ff7r-data-editor",
"dependencies": {
"bootstrap-dark-5": "^1.1.3",
"bootstrap-icons": "^1.7.2",
"conf": "^10.1.1",
"papaparse": "^5.3.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"electron": "^16.0.7",
"electron-packager": "^15.4.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
}
}