forked from nanostores/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@nanostores/query",
"version": "0.0.5",
"description": "Tiny remote data fetching library for Nano Stores",
"scripts": {
"build": "vite build",
"check": "tsc --noEmit && vitest typecheck --run",
"test": "vitest",
"testrun": "vitest run"
},
"keywords": [
"nano",
"react",
"preact",
"vue",
"svelte",
"store",
"request",
"cache",
"fetch"
],
"author": "Dan Kozlov <[email protected]>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/nanoquery.umd.cjs",
"module": "./dist/nanoquery.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/nanoquery.js",
"require": "./dist/nanoquery.umd.cjs"
}
},
"dependencies": {
"nanoevents": "7"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.2.6",
"@rollup/plugin-strip": "^3.0.2",
"nanostores": "^0.7.1",
"typescript": "^4.9.4",
"vite": "^3.0.4",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.26.2"
},
"peerDependencies": {
"nanostores": "^0.7.0"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"directories": {
"lib": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanostores/query.git"
},
"bugs": {
"url": "https://github.com/nanostores/query/issues"
},
"homepage": "https://github.com/nanostores/query#readme"
}