forked from sleeyax/asarmor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "asarmor",
"version": "2.0.0",
"description": "Protect asar archive file from extraction",
"main": "build/src/index.js",
"scripts": {
"test": "jest",
"start": "node ./build/bin/asarmor.js",
"clean": "rimraf build",
"build": "tsc",
"build:watch": "tsc --watch",
"prepack": "npm run clean && npm run build"
},
"jest": {
"modulePathIgnorePatterns": [
"example"
]
},
"author": "Sleeyax",
"license": "MIT",
"dependencies": {
"chromium-pickle-js": "^0.2.0",
"commander": "^6.1.0"
},
"bin": "./build/bin/asarmor.js",
"repository": {
"type": "git",
"url": "https://github.com/sleeyax/asarmor"
},
"keywords": [
"asar",
"asar protection",
"asar patch",
"asar anti-unpacking",
"asar anti-extraction",
"electron asar"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.6.4",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}