-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "@ds-starter/ui",
"version": "0.2.0",
"author": "Evgeny Khoroshilov (https://github.com/XOP)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/XOP/design-system-starter"
},
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./components/*": {
"import": "./dist/components/*.esm.js",
"require": "./dist/components/*.cjs.js",
"types": "./dist/components/*.d.ts"
},
"./css/*": "./dist/css/*"
},
"files": [
"dist"
],
"scripts": {
"lint": "biome lint",
"format": "biome format",
"format:fix": "pnpm format --write",
"test": "vitest --run",
"test:dev": "vitest",
"build": "tsc && vite build"
},
"dependencies": {
"@ds-starter/tokens": "workspace:*",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/recipes": "^0.5.1",
"clsx": "^2.0.0",
"react-aria-components": "^1.3.1"
},
"devDependencies": {
"@ds-starter/tsconfig": "workspace:*",
"@csstools/normalize.css": "^12.0.0",
"@storybook/react": "^8.2.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.74",
"@vanilla-extract/vite-plugin": "4.0.10",
"@vitejs/plugin-react": "^4.2.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.8.1",
"vitest": "^2.0.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
}
}