-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 918 Bytes
/
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
{
"name": "basic-component",
"type": "module",
"files": [
"dist"
],
"main": "./dist/basic-component.umd.cjs",
"module": "./dist/basic-component.js",
"exports": {
".": {
"import": "./dist/basic-component.js",
"require": "./dist/basic-component.umd.cjs"
}
},
"version": "1.0.0",
"scripts": {
"build": "vite build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@types/css-modules": "^1.0.5",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"typescript": "^5.5.4",
"vite-plugin-css-injected-by-js": "^3.5.1"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.1",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.0-beta.2"
}
}