-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.41 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
75
76
77
78
{
"name": "@e-krebs/react-library",
"version": "0.0.42",
"description": "A collection of components to be reused across personal projects",
"repository": "github.com/e-krebs/react-library",
"author": "Emmanuel Krebs <[email protected]>",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./icons.svg": "./src/assets/icons.svg",
"./tailwind.config.ts": "./shared.tailwind.config.ts"
},
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"clean": "bun scripts/clean.sh",
"dev:library": "bun run --bun vite",
"build:library": "bun run --bun vite build",
"dev:doc": "ladle serve",
"build:doc": "ladle build",
"dev:parallel": "bun run scripts/parallel-dev.ts",
"dev": "bun run clean && bun run dev:parallel",
"lint": "eslint src .ladle",
"build": "bun run clean && bun run build:library && bun run build:doc",
"theme": "bun run src/scripts/theme.ts"
},
"peerDependencies": {
"@tailwindcss/typography": "^0.5.15",
"react": "^19.0.0",
"react-aria-components": "1.5.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@ladle/react": "^5.0.0",
"@react-aria/utils": "^3.26.0",
"@tailwindcss/typography": "^0.5.15",
"@types/babel__template": "^7.4.4",
"@types/bun": "^1.1.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-aria-components": "1.5.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.17",
"tailwindcss-react-aria-components": "1.2.0",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0"
},
"resolutions": {
"**/semver": "^7.5.2"
}
}