-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tgui-core",
"version": "3.0.5",
"description": "TGUI core component library",
"keywords": ["TGUI", "library", "typescript"],
"files": ["dist", "styles"],
"exports": {
"./components": {
"import": "./dist/components/index.js",
"require": "./dist/components/index.cjs"
},
"./styles": {
"sass": "./styles/main.scss",
"default": "./styles/main.scss"
},
"./styles/components/*": {
"sass": "./styles/components/*"
},
"./*": {
"import": "./dist/common/*.js",
"require": "./dist/common/*.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/tgstation/tgui-core.git"
},
"scripts": {
"build": "rslib build",
"lint": "biome check lib",
"lint:fix": "prettier . --write && biome check . --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "node --experimental-strip-types --experimental-test-coverage --test ./tests/*.test.ts"
},
"author": "jlsnow301",
"license": "MIT",
"type": "module",
"dependencies": {
"@floating-ui/react": "^0.27.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rsbuild/core": "^1.3.5",
"@rsbuild/plugin-react": "^1.2.0",
"@rsbuild/plugin-sass": "^1.3.1",
"@rslib/core": "^0.6.2",
"@storybook/addon-console": "^3.0.0",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/theming": "^8.6.12",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"prettier": "^3.5.3",
"sass": "^1.81.0",
"storybook": "^8.6.12",
"storybook-addon-sass-postcss": "^0.3.2",
"storybook-react-rsbuild": "^1.0.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"packageManager": "[email protected]"
}