-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.75 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "textonom",
"version": "1.4.3",
"description": "A text editor that lets you perform common text transformations locally",
"main": "./out/main/index.js",
"author": "Netroforge",
"homepage": "https://github.com/Netroforge/textonom",
"scripts": {
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run type-check && electron-vite build",
"postinstall": "node node_modules/electron/install.js && electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"publish:win": "npm run build && electron-builder --win --publish always",
"publish:mac": "npm run build && electron-builder --mac --publish always",
"publish:linux": "npm run build && electron-builder --linux --publish always"
},
"dependencies": {
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@prettier/plugin-xml": "^3.4.2",
"bcryptjs": "^3.0.3",
"cronstrue": "^3.14.0",
"crypto-js": "^4.2.0",
"electron-log": "^5.4.4",
"electron-updater": "^6.8.3",
"fast-xml-parser": "^5.8.0",
"js-base64": "^3.7.8",
"js-yaml": "^4.1.1",
"jwt-decode": "^4.0.0",
"marked": "^18.0.4",
"pinia": "^3.0.4",
"smol-toml": "^1.6.1",
"sql-formatter": "^15.8.0",
"turndown": "^7.2.4",
"vue": "^3.5.35",
"xml-formatter": "^3.7.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^2.1.0",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/crypto-js": "^4.2.2",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^25.9.1",
"@types/turndown": "^5.0.6",
"@types/xml-formatter": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/test-utils": "^2.4.10",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^10.4.1",
"eslint-plugin-vue": "^10.9.1",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"undici-types": "^8.3.0",
"vite": "^7.3.3",
"vitest": "^4.1.7",
"vue-eslint-parser": "^10.0.0",
"vue-tsc": "^3.3.3"
}
}