-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "standard-ui",
"version": "0.1.2",
"description": "A set of components for React",
"main": "dist/cjs/bundle.js",
"module": "dist/esm/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run lint -- --fix && rm -rf dist && rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comake/standard-ui"
},
"author": "CoMake",
"license": "MIT",
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash": "^4.17.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "3.29",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-popover": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.7",
"lodash": "^4.17.21",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4"
}
}