-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.23 KB
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
{
"name": "setup-lua",
"version": "2.0.0",
"type": "module",
"devDependencies": {
"@actions/core": "3.0.1",
"@actions/cache": "6.2.0",
"@types/node": "26.1.1",
"@vercel/ncc": "0.44.1",
"typescript": "6.0.2",
"undici-types": "8.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-github": "ncc build src/main.ts -o dist/github",
"compile-cli": "ncc build src/main.ts -o dist/cli",
"generate-github": "node generate-missing-files.js GITHUB",
"generate-cli": "node generate-missing-files.js CLI",
"build-github": "npm run generate-github && npm run compile-github",
"build-cli": "npm run generate-cli && npm run compile-cli",
"build": "npm run build-github && npm run build-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luau-project/setup-lua.git"
},
"bugs": {
"url": "https://github.com/luau-project/setup-lua/issues"
},
"homepage": "https://github.com/luau-project/setup-lua",
"keywords": [
"Lua",
"LuaJIT",
"OpenResty",
"LuaRocks"
],
"author": "luau-project <luau.project@gmail.com>",
"license": "MIT",
"description": "Install Lua / LuaJIT / OpenResty + LuaRocks in a single step"
}