-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.54 KB
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
{
"name": "applicationator",
"version": "0.0.1",
"main": "dist/main/index.js",
"scripts": {
"postinstall": "electron-rebuild -f -w better-sqlite3",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "tsc -p tsconfig.renderer.json",
"build:copy": "node scripts/copy-renderer.js",
"build": "npm run build:main && npm run build:renderer && npm run build:copy",
"dev": "npm run build && electron .",
"start": "electron .",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win",
"dist": "npm run build && electron-builder --mac --win",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,html,css}\" \"assets/**/*.{json,html}\" \"*.json\" \".github/**/*.yml\"",
"format:check": "prettier --check \"src/**/*.{ts,html,css}\""
},
"dependencies": {
"better-sqlite3": "^9.4.3",
"canvas": "^3.2.3",
"chrome-remote-interface": "^0.33.0",
"docx": "^9.7.1",
"katex": "^0.17.0",
"mammoth": "^1.12.0",
"pdf-parse": "^2.4.5"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@eslint/js": "^9.39.4",
"@types/better-sqlite3": "^7.6.8",
"@types/chrome-remote-interface": "^0.34.0",
"@types/node": "^20.11.5",
"@types/pdf-parse": "^1.1.5",
"electron": "^29.0.0",
"electron-builder": "^24.9.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.9.3",
"typescript": "^5.3.3",
"typescript-eslint": "^8.62.1"
},
"license": "MIT",
"description": "version 1 of job applicationinator"
}