-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1021 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1021 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
{
"name": "windui",
"version": "1.6.65",
"main": "./dist/main.lua",
"repository": "https://github.com/Footagesus/WindUI",
"discord": "https://discord.gg/ftgs-development-hub-1300692552005189632",
"author": "Footagesus",
"description": "Roblox UI Library for scripts",
"license": "MIT",
"scripts": {
"dev": "bash build/build.sh dev $INPUT_FILE",
"build": "bash build/build.sh build $INPUT_FILE",
"live": "python3 -m http.server 8642",
"watch": "chokidar . -i 'node_modules' -i 'dist' -i 'build' -c 'npm run dev --'",
"live-build": "concurrently \"npm run live\" \"npm run watch --\"",
"example-live-build": "INPUT_FILE=main_example.lua npm run live-build",
"updater": "python3 updater/main.py"
},
"keywords": [
"ui-library",
"ui-design",
"script",
"script-hub",
"exploiting"
],
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.0"
}
}