-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.85 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.85 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rstudio",
"productName": "RStudio",
"version": "99.9.9-dev+999",
"description": "RStudio",
"main": "./.webpack/main",
"repository": "https://github.com/rstudio/rstudio",
"author": "RStudio PBC",
"license": "AGPL-3.0-only",
"scripts": {
"clean": "ts-node scripts/clean.ts",
"lint": "eslint ./src ./test",
"typecheck": "tsc --noEmit",
"package": "npm ci && electron-forge package",
"start": "electron-forge start -- --no-sandbox",
"debug": "electron-forge start --inspect-electron",
"fullstart": "npm install && electron-forge start",
"test": "electron-mocha --no-sandbox --full-trace --config ./test/unit/mocharc.json",
"testwip": "electron-mocha -c -g WIP --config ./test/unit/mocharc.json",
"format": "npx prettier --write . --ignore-path .gitignore",
"postinstall": "node scripts/postinstall.js && npx electron-rebuild && ts-node scripts/generate.ts",
"generate": "ts-node scripts/generate.ts",
"install-fuses": "node scripts/install-fuses.mjs",
"automation": "electron-forge start -- --no-sandbox --run-automation"
},
"config": {
"forge": "./forge.config.js"
},
"devDependencies": {
"@electron-forge/cli": "7.11.1",
"@electron-forge/plugin-webpack": "7.11.1",
"@electron/packager": "20.0.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@types/chai": "5.2.3",
"@types/line-reader": "0.0.37",
"@types/lodash.debounce": "4.0.9",
"@types/mocha": "10.0.10",
"@types/node": "25.6.0",
"@types/properties-reader": "2.1.3",
"@types/sinon": "21.0.1",
"@types/winston-syslog": "2.4.4",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"buffer": "^6.0.3",
"chai": "6.2.2",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"electron": "41.3.0",
"electron-mocha": "13.1.0",
"eslint": "10.2.1",
"fork-ts-checker-webpack-plugin": "9.1.0",
"globals": "17.5.0",
"json": "11.0.0",
"json-schema-to-typescript": "15.0.4",
"lint-staged": "16.4.0",
"mocha": "11.7.5",
"nan": "2.26.2",
"node-loader": "2.1.0",
"prettier": "3.8.3",
"process": "0.11.10",
"sinon": "21.1.2",
"style-loader": "4.0.0",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"vue-loader": "17.4.2",
"webpack": "5.106.2"
},
"dependencies": {
"@electron/fuses": "2.1.1",
"@vueuse/core": "14.2.1",
"crc": "4.3.2",
"electron-store": "11.0.2",
"i18next": "26.0.8",
"line-reader": "0.4.0",
"lodash.debounce": "4.0.8",
"net-ipc": "2.2.2",
"node-abi": "4.28.0",
"node-addon-api": "8.7.0",
"properties-reader": "3.0.1",
"semver": "7.7.4",
"uuid": "14.0.0",
"vue": "3.5.33",
"winston": "3.19.0",
"winston-syslog": "2.7.1"
}
}