-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 937 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 937 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
39
40
{
"name": "luabundle",
"description": "Bundles several Lua files into a single file.",
"version": "1.7.0",
"author": "Benjamin Dobell @Benjamin-Dobell",
"bugs": "https://github.com/Benjamin-Dobell/luabundle/issues",
"dependencies": {
"moonsharp-luaparse": "^0.2.4"
},
"devDependencies": {
"@types/node": "^20.8.9",
"eslint": "^8.52.0",
"fs-extra": "^11.1.1",
"klaw-sync": "^6.0.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/Benjamin-Dobell/luabundle",
"keywords": [
"lua",
"require",
"modules",
"bundler",
"bundling"
],
"license": "MIT",
"main": "index.js",
"repository": "Benjamin-Dobell/luabundle",
"scripts": {
"build": "node scripts/build.js",
"prepack": "node scripts/prepack.js",
"posttest": "eslint . --config .eslintrc",
"test": "echo NO TESTS"
},
"types": "index.d.ts",
"packageManager": "pnpm@9.5.0"
}