-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
31 lines (31 loc) · 909 Bytes
/
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
{
"name": "kprotect",
"version": "1.0.0",
"description": "Kernel Protect",
"scripts": {
"build": "npm run build:compiler && npm run build:vm && npm run build:debugger",
"build:vm": "yarn workspace @kprotect/vm build",
"build:compiler": "yarn workspace @kprotect/compiler build",
"build:debugger": "yarn workspace @kprotect/debugger build",
"protect": "node cli/protect.cjs",
"disassemble": "node cli/disassemble.cjs",
"test": "npm run protect -- -i protect/src.js -o protect/bundle.js",
"unit": "yarn workspace @kprotect/test test"
},
"author": "Richard Yang",
"license": "GPL-3.0-or-later",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/yang-zhongtian/KProtect.git"
},
"workspaces": {
"packages": [
"packages/*",
"cli",
"test"
]
},
"packageManager": "[email protected]"
}