-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.75 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"homepage": "https://railmapgen.github.io/mantine-components",
"name": "@railmapgen/mantine-components",
"repository": "github:railmapgen/mantine-components",
"bugs": {
"url": "https://github.com/railmapgen/mantine-components/issues"
},
"license": "GPL-3.0-only",
"peerDependencies": {
"@mantine/core": ">=7",
"@mantine/hooks": ">=7",
"@railmapgen/rmg-runtime": ">=11",
"postcss": ">=8",
"react": ">=18",
"react-icons": "*"
},
"dependencies": {
"clsx": "^2.1.1",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@mantine/core": "^9.1.1",
"@mantine/hooks": "^9.1.1",
"@railmapgen/rmg-runtime": "^13.1.0",
"@storybook/addon-docs": "^10.3.6",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@tsdown/css": "^0.21.10",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.4",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.3.6",
"jsdom": "^29.1.1",
"postcss": "^8.5.14",
"postcss-modules": "^6.0.1",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"storybook": "^10.3.6",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"scripts": {
"start": "npm run storybook",
"build": "npm run build:package && npm run build:storybook",
"build:package": "tsc && tsdown",
"test": "vitest run --coverage",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"version": "1.1.3",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./styles.css": "./dist/style.css",
"./utils": {
"import": "./dist/utils/index.mjs"
}
},
"files": [
"dist"
]
}