-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "pocketstore",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/minchingtonak/pocketstore.git"
},
"files": [
"dist",
"src"
],
"main": "./dist/pocketstore.umd.js",
"module": "./dist/pocketstore.es.js",
"types": "./dist/pocketstore.es.d.ts",
"exports": {
".": {
"import": "./dist/pocketstore.es.js",
"require": "./dist/pocketstore.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"publish": "vite build && npm publish",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.24",
"@types/react-dom": "^18.0.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@vitejs/plugin-react": "^1.3.1",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"optionator": "^0.9.1",
"react-dom": ">=16.8.0",
"typescript": "^4.5.4",
"vite": "^2.9.0",
"vite-dts": "^1.0.4",
"vite-plugin-checker": "^0.4.5"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}