-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.75 KB
/
package.json
File metadata and controls
95 lines (95 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
88
89
90
91
92
93
94
95
{
"name": "@azelenets/aegis-design-system",
"description": "A design system for AEGIS applications, built with React and TypeScript. It includes reusable components, styles, and utilities.",
"private": false,
"version": "0.1.6",
"author": "Andrii Zelenets",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./fonts.css": "./dist/fonts.css",
"./globals.css": "./dist/index.css",
"./styles.css": "./dist/index.css"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": [
"*.css",
"**/*.css"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azelenets/AEGIS-design-system.git"
},
"bugs": {
"url": "https://github.com/azelenets/AEGIS-design-system/issues"
},
"homepage": "https://github.com/azelenets/AEGIS-design-system#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"test-storybook": "vitest run --project storybook",
"test-storybook:watch": "vitest --project storybook",
"test-storybook:coverage": "vitest run --project storybook --coverage",
"visual-test": "chromatic"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"dependencies": {
"@material-symbols-svg/react": "^0.1.23",
"leaflet": "^1.9.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@eslint/js": "^9.39.4",
"@storybook/addon-a11y": "^10.2.17",
"@storybook/addon-docs": "^10.2.17",
"@storybook/addon-vitest": "^10.2.17",
"@storybook/react-vite": "^10.2.17",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.4.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.27",
"chromatic": "^15.2.0",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"playwright": "^1.58.2",
"postcss": "^8.5.8",
"storybook": "^10.2.17",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.2",
"typescript-eslint": "^8.57.0",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
}
}