-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.94 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.94 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
{
"name": "@electron/apps",
"version": "0.0.0-development",
"description": "A collection of apps built on Electron",
"private": true,
"main": "index.json",
"scripts": {
"build:clean": "node script/clean",
"build:resize": "node script/resize",
"build:dates": "node script/dates",
"build:categories": "node script/categories",
"build:pack": "node script/pack",
"prettier": "prettier --check \"./**/*.{ts,js,yml}\" --experimental-cli",
"test": "mocha --reporter min test/human-data.js && prettier --check \"./**/*.{ts,js,yml}\" --write",
"test:debug": "mocha --reporter spec test/human-data.js && prettier --check \"./**/*.{ts,js,yml}\" --write",
"pretest-all": "npm run build",
"test-all": "mocha --reporter min && prettier --check \"./**/*.{ts,js,yml}\" --write",
"wizard": "node wizard.js",
"remove:links": "node script/remove-broken-links",
"remove:old": "node script/remove-old-electron-apps",
"remove:disabled": "node script/remove-disabled-apps"
},
"repository": "https://github.com/electron/apps",
"keywords": [
"electron",
"apps",
"gallery",
"collection",
"showcase"
],
"author": "Toinane <[email protected]> (https://electronjs.org/apps)",
"license": "MIT",
"devDependencies": {
"chai": "^6.2.0",
"github-url-to-object": "^4.0.6",
"husky": "^8.0.1",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.2",
"inquirer": "^8.2.4",
"lint-staged": "^12.4.1",
"mocha": "^11.7.4",
"prettier": "^3.6.2",
"readdirp": "^3.6.0",
"semver": "^7.7.3",
"sharp": "^0.34.4",
"sinon": "^21.0.0",
"slugify": "^1.6.6",
"yaml": "^2.8.1"
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"*.{js,ts,yml}": "prettier --write --experimental-cli"
},
"packageManager": "[email protected]+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}