-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@rbxts/react-clean-ui",
"version": "1.4.0",
"description": "A clean UI library for Roblox TypeScript projects",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build",
"screenshots": "node scripts/generate-screenshots.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"rbxts",
"react",
"ui",
"clean",
"shadercloud"
],
"author": "ShaderCloud",
"license": "ISC",
"type": "commonjs",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo",
"!out/Tests/**"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/lunit": "^4.0.2",
"@rbxts/react-screenshot-plugin": "^0.1.7",
"@rbxts/types": "^1.0.938",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-roblox-ts": "^1.4.0",
"prettier": "^3.9.5",
"roblox-ts": "^3.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@rbxts/react": "^17.3.7-ts.2",
"@rbxts/react-ripple": "^3.0.1",
"@rbxts/react-roblox": "^17.3.7-ts.2",
"@rbxts/services": "^1.6.0",
"@rbxts/ui-labs": "^2.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shadercloud/rbxts-react-clean-ui.git"
},
"homepage": "https://shadercloud.github.io/rbxts-react-clean-ui/",
"bugs": {
"url": "https://github.com/Shadercloud/rbxts-react-clean-ui/issues"
}
}