-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
59
60
61
62
63
64
65
{
"name": "@apparently/query",
"description": "Simple and small data fetching library for SolidJS. Inspired by SWR.",
"authors": "Patrik Smělý (SogoCZE), Petr Strolený (Petmar)",
"author": "Apparently Studio",
"repository": {
"type": "git",
"url": "git+https://github.com/apparently-studio/query.git"
},
"version": "0.0.18",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"solid": "./dist/index.jsx",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "rollup -c",
"build:types": "tsc"
},
"dependencies": {
"stable-hash": "^0.0.2",
"@solid-primitives/map": "^0.2.3"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^18.7.14",
"babel-preset-solid": "^1.5.3",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"solid-jest": "^0.2.0",
"solid-js": "^1.5.3",
"typescript": "^4.8.2"
},
"peerDependencies": {
"solid-js": "^1.5.7"
},
"keywords": [
"SolidJS",
"Data",
"Query",
"JavaScript",
"TypeScript",
"Apparently"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/apparently-studio/query/issues"
},
"homepage": "https://github.com/apparently-studio/query#readme"
}