-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 892 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 892 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
35
36
37
38
{
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"@types/pako": "^2.0.3",
"esbuild": "^0.25.12",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"scripts": {
"bundle": "node esbuild.config.js",
"bundledev": "node esbuild.config.js --dev --watch",
"build": "rimraf dist && npx tsc && npm run bundle",
"dev": "rimraf dist && npm run bundledev"
},
"name": "goofyluauglifier-client",
"version": "2.1.0a",
"type": "module",
"description": "Frontend Website for goofyluauglifier",
"main": "index.js",
"repository": {
"type": "git",
"url": "GoofyLuaUglifier"
},
"keywords": [
"obfuscator",
"uglifier",
"lua"
],
"author": "mopsfl",
"license": "ISC",
"dependencies": {
"fs-extra": "^11.3.2",
"jquery": "^3.7.1",
"monaco-editor": "^0.50.0",
"pako": "^2.1.0"
}
}