-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.17 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.17 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
{
"name": "@electron/asar",
"description": "Creating Electron app packages",
"version": "0.0.0-development",
"type": "module",
"exports": "./lib/asar.js",
"types": "./lib/asar.d.ts",
"bin": "./bin/asar.mjs",
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=22.12.0"
},
"license": "MIT",
"homepage": "https://github.com/electron/asar",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/asar.git"
},
"bugs": {
"url": "https://github.com/electron/asar/issues"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsc",
"build:docs": "typedoc src/asar.ts",
"test": "yarn lint && yarn vitest run && xvfb-maybe electron node_modules/vitest/vitest.mjs run",
"test:typecheck": "cd test && tsc",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "yarn prettier:check && yarn test:typecheck",
"prettier": "prettier \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs}\"",
"prettier:check": "yarn prettier --check",
"prettier:write": "yarn prettier --write",
"benchmark": "yarn build && tsx benchmark/run.ts",
"benchmark:quick": "yarn build && tsx benchmark/run.ts small",
"prepack": "yarn build",
"prepare": "husky"
},
"dependencies": {
"commander": "^13.1.0",
"glob": "^13.0.2",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.12.0",
"electron": "^39.8.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typedoc": "~0.25.13",
"typescript": "^5.5.4",
"vitest": "^3.2.4",
"xvfb-maybe": "^0.2.1"
},
"resolutions": {
"fsevents": "npm:@electron/fsevents@2.3.3-fork"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
"dependenciesMeta": {
"electron": {
"built": true
}
},
"lint-staged": {
"*.{json,md}": "prettier --write --experimental-cli",
"*.{js,ts, cjs, mjs, cts, mts}": [
"prettier --write --experimental-cli"
]
}
}