-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 865 Bytes
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
{
"name": "luau-obfuscator",
"version": "0.1.0",
"description": "Luau parser and obfuscator with full Luau support",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lex": "npm run build && node dist/cli/lex.js",
"parse": "npm run build && node dist/cli/parse.js",
"obfuscate": "npm run build && node dist/cli/obfuscate.js",
"start": "node dist/cli/lex.js"
},
"keywords": [
"luau",
"obfuscator",
"parser",
"roblox"
],
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
},
"dependencies": {
"express": "^5.2.1"
}
}