-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "@margaret-ui/core",
"version": "0.2.2",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsup src/index.ts --dts --legacy-output",
"postbuild": "cp package.json dist/",
"preview": "vite preview",
"changeset": "changeset",
"version": "changeset version",
"prerelease": "npm run build",
"release": "changeset publish"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-tooltip": "^1.0.5",
"lodash-es": "^4.17.21",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.5",
"@types/node": "^17.0.5",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.19",
"@vitejs/plugin-react": "^1.0.7",
"csstype": "^3.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"tsup": "^6.2.0",
"typescript": "^4.4.4",
"vite": "^2.7.2"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"styled-components": ">=5.0"
}
}