-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "tgui-core",
"version": "1.2.1",
"description": "TGUI core component library",
"keywords": ["TGUI", "library", "typescript"],
"files": ["dist"],
"exports": {
"./components": {
"import": "./dist/components/index.js",
"require": "./dist/components/index.cjs"
},
"./*": {
"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"
},
"author": "jlsnow301",
"license": "MIT",
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@popperjs/core": "^2.11.8",
"@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",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"react-popper": "^2.3.0",
"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": "[email protected]+sha512.beb9e2a803db336c10c9af682b58ad7181ca0fbd0d4119f2b33d5f2582e96d6c0d93c85b23869295b765170fbdaa92890c0da6ada457415039769edf3c959efe"
}