-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "shadcn-lib",
"license": "MIT",
"version": "0.2.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "bunx --bun vite",
"build": "run-s build:*",
"build:lib": "bun run ./scripts/build.ts",
"test": "bun test",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --ignore-path .gitignore",
"format": "prettier --write .",
"check": "bunx tsc && npm run css-check",
"release": "bun run check && bun run build && changeset publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"css-check": "bun ./scripts/css-check.ts"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@frontside/eslint-config": "^3.1.0",
"@storybook/addon-essentials": "^7.0.0-beta.33",
"@storybook/addon-interactions": "^7.0.0-beta.33",
"@storybook/addon-links": "^7.0.0-beta.33",
"@storybook/blocks": "^7.0.0-beta.33",
"@storybook/react": "^7.0.0-beta.33",
"@storybook/react-vite": "^7.0.0-beta.33",
"@storybook/testing-library": "^0.0.13",
"@types/inquirer": "^9.0.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/recursive-readdir": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@vitejs/plugin-react": "^3.0.1",
"bun-lightningcss": "^0.2.0",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.0.2",
"chalk": "^5.2.0",
"eslint": "^8.33.0",
"fetch-lite": "^1.1.0",
"inquirer": "^9.1.4",
"kolorist": "^1.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"recursive-readdir": "^2.2.3",
"storybook": "^7.0.0-beta.33",
"ts-node": "^10.9.1",
"type-fest": "^3.5.4",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}