-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
130 lines (130 loc) · 3.88 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "commas",
"version": "0.35.0",
"productName": "Commas",
"author": "CyanSalt",
"description": "A hackable terminal and command runner.",
"main": "dist/main/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "electron-rebuild",
"dev": "node build/build-git.mjs && electron .",
"dev:all": "node build/build.mjs && electron .",
"dev:user": "node build/build-user.mjs && electron .",
"build": "node build/build.mjs && node build/pack.mjs -- --local",
"pack": "node build/build.mjs && node build/pack.mjs",
"release": "dotenv release-it --",
"lint:script": "eslint --cache --fix './**/*.{cjs,js,mjs,ts,vue}'",
"lint:style": "stylelint --ignore-path .gitignore --cache --fix ./**/*.{css,scss,vue}",
"lint": "npm run lint:script && npm run lint:style",
"typecheck": "vue-tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyanSalt/commas.git"
},
"bugs": {
"url": "https://github.com/CyanSalt/commas/issues"
},
"homepage": "https://github.com/CyanSalt/commas#readme",
"license": "ISC",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.4.0",
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^1.4.0",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3",
"@commas/api": "file:src/api",
"@commas/electron-ipc": "file:src/electron-ipc",
"@commas/types": "file:src/types",
"@cyansalt/eslint-config": "^4.2.1",
"@cyansalt/stylelint-config": "^4.0.5",
"@cyansalt/tsconfig": "^2.2.1",
"@electron/packager": "^18.3.5",
"@electron/rebuild": "^3.7.0",
"@release-it/conventional-changelog": "^9.0.0",
"@types/fuzzaldrin-plus": "^0.6.5",
"@types/lodash": "^4.17.10",
"@types/node": "^20.16.11",
"@types/node-ipc": "^9.2.3",
"@types/shell-quote": "^1.7.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vue-macros/reactivity-transform": "^1.1.2",
"@vueuse/core": "^11.1.0",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-image": "^0.8.0",
"@xterm/addon-ligatures": "^0.9.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-serialize": "^0.13.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"css-font-face-src": "^2.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"electron": "^33.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"keyboardevent-from-electron-accelerator": "^2.0.0",
"lucide-static": "^0.453.0",
"png2icons": "^2.0.1",
"release-it": "^17.9.0",
"sass-embedded": "^1.79.5",
"simple-icons-font": "^13.14.0",
"stylelint": "^16.10.0",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vue-tsc": "^2.1.6",
"vue-virtual-scroller": "^2.0.0-beta.8"
},
"dependencies": {
"@achrinza/node-ipc": "^10.1.11",
"@vue/reactivity": "^3.4.3",
"chokidar": "^4.0.1",
"colord": "^2.9.3",
"file-icon": "^4.0.0",
"fuzzaldrin-plus": "^0.6.0",
"lodash": "^4.17.21",
"node-pty": "1.1.0-beta26",
"properties": "^1.2.1",
"semver": "^7.6.3",
"shell-history": "^1.1.0",
"shell-quote": "^1.8.1",
"sudo-prompt": "^9.2.1",
"vue": "^3.4.3",
"yaml": "^2.6.0"
},
"workspaces": [
"addons/addon-manager",
"addons/ai",
"addons/browser",
"addons/camera",
"addons/cleaner",
"addons/cli",
"addons/clippy",
"addons/editor",
"addons/explorer",
"addons/git",
"addons/iterm2",
"addons/launcher",
"addons/power-mode",
"addons/preference",
"addons/proxy",
"addons/settings",
"addons/sync",
"addons/theme",
"addons/updater"
],
"commas:i18n": {
"zh-CN": {
"description": "一款可定制终端和命令执行工具"
}
}
}