Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ npm-debug.log
.idea
lib
docs
.yarn/install-state.gz
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.1.0.cjs
30 changes: 13 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
"type": "module",
"exports": "./lib/asar.js",
"types": "./lib/asar.d.ts",
"bin": {
"asar": "./bin/asar.mjs"
},
"bin": "./bin/asar.mjs",
"files": [
"bin",
"lib"
Expand All @@ -30,15 +28,16 @@
"scripts": {
"build": "tsc",
"build:docs": "typedoc src/asar.ts",
"mocha": "xvfb-maybe electron-mocha && mocha",
"mocha:update": "mocha --update",
"mocha:watch": "mocha --watch",
"test": "yarn lint && yarn mocha",
"lint": "yarn prettier:check",
"prettier": "prettier \"src/**/*.ts\" \"test/**/*.js\" \"*.js\"",
"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\" \"test/**/*.ts\" \"*.js\"",
"prettier:check": "yarn prettier --check",
"prettier:write": "yarn prettier --write",
"prepare": "tsc"
"prepare": "tsc",
"postinstall": "tsc"
},
"dependencies": {
"commander": "^13.1.0",
Expand All @@ -47,16 +46,13 @@
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "~22.10.7",
"chai": "^5.2.0",
"@types/node": "^22.12.0",
"electron": "^34.5.0",
"electron-mocha": "^13.1.0",
"mocha": "~11.0.2",
"mocha-chai-jest-snapshot": "^1.1.6",
"prettier": "^3.3.3",
"typedoc": "~0.25.13",
"typescript": "^5.5.4",
"vitest": "^3.2.4",
"xvfb-maybe": "^0.2.1"
}
},
"packageManager": "yarn@4.1.0"
}
Loading
Loading