-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 887 Bytes
/
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
{
"name": "@rbxts/lumin-ui",
"version": "0.5.0-rc3",
"main": "out/init.luau",
"typings": "out/index.d.ts",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/lumin-org/ui.git"
},
"description": "An unrivaled UI framework for Roblox-TS",
"files": [
"**/out/**",
"!**/*.tsbuildinfo",
"**/roblox_packages/**"
],
"dependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"roblox-ts": "^3.0.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"vitepress-plugin-tabs": "^0.5.0",
"vitepress": "^1.6.1"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}