-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
50
51
52
{
"name": "@wolfe-labs/du-luac",
"version": "1.3.5",
"description": "Lua CLI Utility for Dual Universe",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wolfe-labs/DU-LuaC.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wolfe-labs/DU-LuaC/issues"
},
"bin": {
"du-lua": "dist/index.js"
},
"scripts": {
"prebuild": "node prebuild.js",
"build": "npx tsc",
"watch": "npm run prebuild && npx tsc --watch",
"start": "npm run build && node dist/index.js",
"pre-release": "npm run build && node dist/index.js update-codex",
"update-dev": "git pull && npm run build"
},
"homepage": "https://github.com/wolfe-labs/DU-LuaC#readme",
"dependencies": {
"@wolfe-labs/luamin": "^1.54.0",
"axios": "^0.24.0",
"clipboardy": "^3.0.0",
"colors": "^1.4.0",
"fs-extra": "^9.1.0",
"git-url-parse": "^13.1.0",
"install": "^0.13.0",
"lodash": "^4.17.21",
"npm": "^9.7.2",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"sha1": "^1.1.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/git-url-parse": "^9.0.1",
"@types/lodash": "^4.14.185",
"@types/luaparse": "^0.2.8",
"@types/node": "^18.7.18",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.12",
"typescript": "^4.8.3"
}
}