-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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": "pdfoxjs",
"author": "Khiet Tam Nguyen",
"license": "MIT",
"version": "0.1.0",
"description": "Standalone desktop app for Mozilla's pdfjs with extendable vim keybindings",
"main": "./out/main.js",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/pdfoxjs"
},
"scripts": {
"start": "yarn build && electron .",
"dev": "ts-node-dev -T dev/server",
"lint": "eslint --fix './**/*.{js,ts,cjs,mjs}'",
"build": "tsc",
"build:win": "yarn build && electron-builder --win",
"build:mac": "yarn build && electron-builder --mac",
"build:linux": "yarn build && electron-builder --linux",
"prepare": "husky install"
},
"dependencies": {
"@electron-toolkit/utils": "^2.0.1",
"electron-context-menu": "^3.6.1",
"electron-updater": "^6.1.7",
"express": "^4.19.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"electron": "^27.1.2",
"electron-builder": "^24.9.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}