-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "@sircfenner/studiocomponents",
"version": "1.1.0",
"description": "React components for building Roblox Studio plugins",
"license": "MIT",
"author": "sircfenner <[email protected]>",
"homepage": "https://github.com/sircfenner/studiocomponents#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sircfenner/studiocomponents.git"
},
"main": "src/init.luau",
"scripts": {
"build-assets": "sh ./scripts/build-assets.sh",
"serve": "sh ./scripts/serve.sh",
"clean": "rm -rf node_modules build serve temp darklua-sourcemap.json",
"format": "stylua .",
"lint": "sh ./scripts/analyze.sh && selene src",
"lint:luau": "sh ./scripts/analyze.sh",
"lint:selene": "selene src",
"prepare": "npmluau",
"style-check": "stylua . --check",
"verify-pack": "npm pack --dry-run"
},
"dependencies": {
"@jsdotlua/react": "^17.1.0",
"@jsdotlua/react-roblox": "^17.1.0"
},
"devDependencies": {
"npmluau": "^0.1.1"
},
"keywords": [
"luau"
]
}