-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "query-plus",
"author": "Rod Lewis",
"description": "Fetch data from a remote API with React",
"version": "1.0.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StudentOfJS/query-plus.git"
},
"keywords": [
"typescript",
"react",
"indexeddb",
"web-worker",
"worker",
"fetch"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepack": "json -f package.json -I -e \"delete this.devDependencies;\"",
"test": "vitest --config ./vitest.config.ts",
"coverage": "vitest run --coverage"
},
"files": [
"dist"
],
"main": "./dist/queryPlus.umd.js",
"module": "./dist/queryPlus.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/queryPlus.es.js",
"require": "./dist/queryPlus.umd.js"
}
},
"dependencies": {
"idb-keyval": "^6.2.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@vitejs/plugin-react": "^2.1.0",
"happy-dom": "^8.1.1",
"json": "^11.0.0",
"react": "^18.2.0",
"typescript": "^4.7.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.2.0",
"vitest": "^0.26.3"
},
"peerDependencies": {
"idb-keyval": "^6.2.0",
"react": ">=16.8.0"
}
}