-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 3.32 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@bitcoin-dev-project/bdp-ui",
"version": "1.5.3",
"description": "An open-source UI component library for building high-quality, accessible design systems and web apps for the Bitcoin Dev Project.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"style": "./dist/styles.css",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./icons": {
"types": "./dist/icons.d.ts",
"import": "./dist/icons.mjs",
"require": "./dist/icons.js"
},
"./styles.css": "./dist/styles.css"
},
"homepage": "https://github.com/bitcoin-dev-project/bdp-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoin-dev-project/bdp-ui.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build:css": "tailwindcss -i src/styles/tailwind.css -o src/styles/tailwind.output.css --minify",
"watch:css": "tailwindcss -i src/styles/tailwind.css -o src/styles/tailwind.output.css --watch",
"dev": "concurrently \"yarn watch:css\" \"yarn storybook\"",
"build": "yarn build:css && tsup",
"clean": "rm -rf dist",
"test": "jest",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"typecheck": "tsc --noEmit",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"check-code": "yarn lint && yarn typecheck"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.4",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-onboarding": "^8.1.10",
"@storybook/addon-webpack5-compiler-swc": "^1.0.4",
"@storybook/blocks": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-webpack5": "^8.1.10",
"@storybook/test": "^8.1.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/eslint": "^9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.35.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"semantic-release": "^24.0.0",
"storybook": "^8.1.10",
"tailwindcss": "^3.4.4",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"packageManager": "yarn@4.3.1",
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.2"
}
}