-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.37 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
{
"name": "@noop-inc/desktop",
"private": true,
"type": "module",
"productName": "Noop",
"version": "0.0.0-automated",
"main": ".vite/build/main.js",
"author": {
"name": "Noop Inc",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/noop-inc/desktop.git"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"common-eslint": "eslint --cache --cache-location node_modules/.cache/.eslintcache",
"common-prettier": "prettier \"**/*.{htm,html,json,md,markdown,yml,yaml}\" --cache",
"common-sequential": "concurrently --raw --max-processes 1",
"common-stylelint": "stylelint \"**/*.{scss,css}\" --cache --cache-location node_modules/.cache/.stylelintcache",
"dev": "npm run postinstall && electron-forge start",
"fix": "npm run common-sequential -- npm:fix-*",
"fix-eslint": "npm run common-eslint -- --fix",
"fix-prettier": "npm run common-prettier -- --write",
"fix-stylelint": "npm run common-stylelint -- --fix",
"lint": "npm run common-sequential -- npm:lint-*",
"lint-eslint": "npm run common-eslint",
"lint-prettier": "npm run common-prettier -- --check",
"lint-stylelint": "npm run common-stylelint",
"make": "npm run postinstall && electron-forge make",
"noop-link": "npm link @noop-inc/console @noop-inc/foundation",
"package": "npm run postinstall && electron-forge package",
"postinstall": "npm run postinstall --prefix node_modules/@noop-inc/desktop-qemu || true",
"publish": "npm run postinstall && electron-forge publish",
"report": "npm run postinstall && electron-forge package",
"serve": "npm run postinstall && electron-forge start"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-dmg": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-fuses": "^7.6.1",
"@electron-forge/plugin-vite": "^7.6.1",
"@electron-forge/publisher-github": "^7.6.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@noop-inc/console": "^3.3.2",
"@noop-inc/desktop-qemu": "^0.0.81",
"@noop-inc/discovery": "^3.0.3",
"@noop-inc/foundation": "3.0.6-pr658.0",
"@stylistic/eslint-plugin-js": "^3.0.1",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"dot-prop": "^9.0.0",
"dotenv": "^16.4.7",
"electron": "^34.1.1",
"electron-log": "^5.3.0",
"electron-serve": "^2.1.1",
"electron-squirrel-startup": "^1.0.1",
"eslint": "^9.20.0",
"eslint-config-standard": "^17.1.0",
"ignore": "^7.0.3",
"marked": "^15.0.6",
"minimatch": "^10.0.1",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^5.14.0",
"strip-ansi": "^7.1.0",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"tar-fs": "^3.0.8",
"tar-stream": "^3.1.7",
"vite": "^6.1.0"
},
"overrides": {
"@noop-inc/console": "$@noop-inc/console",
"@noop-inc/desktop-qemu": "$@noop-inc/desktop-qemu",
"@noop-inc/discovery": "$@noop-inc/discovery",
"@noop-inc/foundation": "$@noop-inc/foundation",
"eslint-config-standard": {
"eslint": "$eslint"
},
"@electron-forge/plugin-vite": {
"vite": "$vite"
}
},
"@noop-inc": {
"workshop-vm": "0.16.0"
}
}