-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 996 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
42
{
"name": "use-boxed-data",
"private": false,
"version": "0.1.1",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"preview": "vite preview"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/greym0uth/use-boxed-data.git"
},
"main": "./dist/use-boxed-data.umd.js",
"module": "./dist/use-boxed-data.es.js",
"exports": {
".": {
"import": "./dist/use-boxed-data.es.js",
"require": "./dist/use-boxed-data.umd.js"
}
},
"types": "./dist/types/main.d.ts",
"devDependencies": {
"@swan-io/boxed": "^0.9.0",
"@types/node": "^17.0.33",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "^4.6.3",
"vite": "^2.9.9"
},
"peerDependencies": {
"@swan-io/boxed": "^0.9.0",
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
}
}