-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 2.26 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
68
69
70
71
72
73
74
{
"name": "tgui-core",
"version": "1.8.0",
"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": {
"default": "./styles/main.scss",
"sass": "./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": {
"dev": "vite",
"build": "tsc --noEmit && vite 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",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "^3.2.3",
"@popperjs/core": "^2.11.8",
"@storybook/addon-console": "^3.0.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@types/node": "^22.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"@vitejs/plugin-react-swc": "^3.7.1",
"chromatic": "^11.18.1",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"react-popper": "^2.3.0",
"sass": "^1.81.0",
"storybook": "^8.4.7",
"storybook-addon-sass-postcss": "^0.3.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}