-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.57 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.57 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"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": "hello@noop.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/noop-inc/desktop.git"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"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"
},
"dependencies": {
"linguist-js": "^2.9.2"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron-forge/publisher-github": "^7.11.1",
"@eslint/compat": "^2.0.4",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@html-eslint/eslint-plugin": "^0.59.0",
"@noop-inc/console": "3.4.2-pr1817.3",
"@noop-inc/desktop-qemu": "^0.0.92",
"@noop-inc/discovery": "^4.1.1",
"@noop-inc/foundation": "4.1.15-pr658.0",
"@stylistic/eslint-plugin": "^5.10.0",
"chokidar": "^5.0.0",
"concurrently": "^9.2.1",
"dot-prop": "^10.1.0",
"electron": "^41.1.1",
"electron-log": "^5.4.3",
"electron-serve": "^3.0.1",
"electron-squirrel-startup": "^1.0.1",
"eslint": "^10.2.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-yml": "^3.3.1",
"globals": "^17.4.0",
"ignore": "^7.0.5",
"marked": "^18.0.0",
"minimatch": "^10.2.5",
"neostandard": "^0.13.0",
"prettier": "^3.8.1",
"rollup-plugin-visualizer": "^7.0.1",
"sass-embedded": "^1.99.0",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"tar-fs": "^3.1.2",
"tar-stream": "^3.1.8",
"undici": "^8.0.2",
"vite": "^8.0.7"
},
"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",
"@stylistic/eslint-plugin": "$@stylistic/eslint-plugin",
"eslint": "$eslint",
"globals": "$globals",
"vite": "$vite"
},
"@noop-inc": {
"cli": "0.1.3",
"workshop-vm": "0.21.1"
}
}