-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "npmluau",
"version": "0.1.2",
"description": "A utility package to use npm for Luau projects",
"keywords": [
"luau",
"roblox",
"package",
"npm",
"yarn",
"lune"
],
"author": "jeparlefrancais <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/seaofvoices/npmluau.git"
},
"homepage": "https://github.com/seaofvoices/npmluau#readme",
"license": "MIT",
"main": "src/index.js",
"bin": {
"npmluau": "main.js"
},
"scripts": {
"prepare": "wasm-pack build luau-types-re-export --target nodejs --release && rm -f luau-types-re-export/pkg/.gitignore",
"test": "cargo test --manifest-path luau-types-re-export/Cargo.toml",
"lint": "eslint main.js src/",
"format": "prettier . --write",
"style": "prettier . --check"
},
"dependencies": {
"commander": "^11.0.0",
"walkdir": "^0.4.1"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.3",
"wasm-pack": "^0.12.1"
}
}