-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
116 lines (116 loc) · 3.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
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
{
"name": "commas",
"version": "0.37.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": "pnpm run lint:script && pnpm 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",
"pnpm": "^9.0.0"
},
"devDependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.5.0",
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3",
"@commas/api": "workspace:*",
"@commas/electron-ipc": "workspace:*",
"@commas/types": "workspace:*",
"@cyansalt/eslint-config": "^4.3.0",
"@cyansalt/stylelint-config": "^4.1.0",
"@cyansalt/tsconfig": "^2.2.1",
"@electron/packager": "^18.3.6",
"@electron/rebuild": "^3.7.1",
"@pnpm/workspace.find-packages": "^1000.0.10",
"@release-it/conventional-changelog": "^10.0.0",
"@types/fuzzaldrin-plus": "^0.6.5",
"@types/lodash": "^4.17.15",
"@types/node": "^20.17.19",
"@types/node-ipc": "^9.2.3",
"@types/shell-quote": "^1.7.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue-macros/reactivity-transform": "^1.1.6",
"@vueuse/core": "^12.7.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.7",
"dotenv-cli": "^8.0.0",
"electron": "^34.2.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"fuzzaldrin-plus": "^0.6.0",
"keyboardevent-from-electron-accelerator": "^2.0.0",
"lucide-static": "^0.473.0",
"picocolors": "^1.1.1",
"png2icons": "^2.0.1",
"release-it": "^18.1.2",
"sass-embedded": "^1.85.0",
"simple-icons-font": "^14.7.0",
"stylelint": "^16.14.1",
"type-fest": "^4.35.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vue-tsc": "^2.2.2",
"vue-virtual-scroller": "2.0.0-beta.8"
},
"dependencies": {
"@achrinza/node-ipc": "^10.1.11",
"@vue/reactivity": "^3.5.13",
"address": "^2.0.3",
"chokidar": "^4.0.3",
"colord": "^2.9.3",
"file-icon": "^4.0.0",
"lodash": "^4.17.21",
"node-pty": "1.1.0-beta27",
"properties": "^1.2.1",
"semver": "^7.7.1",
"shell-history": "^1.1.0",
"shell-quote": "^1.8.2",
"sudo-prompt": "^9.2.1",
"unused-filename": "^3.0.1",
"vue": "^3.5.13",
"yaml": "^2.7.0"
},
"optionalDependencies": {
"electron-clipboard-ex": "^1.3.3"
},
"commas:i18n": {
"zh-CN": {
"description": "一款可定制终端和命令执行工具"
}
}
}