-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "w3-kit",
"version": "0.1.0",
"description": "Web3 React Component Library",
"private": false,
"main": "dist/index.js",
"files": [
"dist",
"components"
],
"scripts": {
"build": "tsc -p packages/create-w3-kit",
"lint": "eslint .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"react": "^18.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@w3-kit/config": "^0.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^10.2.0",
"postcss": "^8.5.1",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^4.9.0"
},
"bin": {
"w3-kit": "./packages/create-w3-kit/dist/index.js"
},
"publishConfig": {
"access": "public"
}
}