-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.63 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "swrlit",
"version": "1.0.0-beta.19",
"author": "Travis Vachon",
"description": "swirl the web in your glass",
"license": "MIT",
"bugs": {
"url": "https://github.com/itme/swrlit/issues"
},
"homepage": "https://swrlit.me/",
"main": "dist/index.js",
"module": "dist/index.es.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./hooks/things": {
"import": "./dist/hooks/things.mjs",
"types": "./dist/hooks/things.d.ts"
},
"./hooks/access": {
"import": "./dist/hooks/access.mjs",
"types": "./dist/hooks/access.d.ts"
},
"./hooks/react": {
"import": "./dist/hooks/react.mjs",
"types": "./dist/hooks/react.d.ts"
},
"./hooks/useEnsured": {
"import": "./dist/hooks/useEnsured.mjs",
"types": "./dist/hooks/useEnsured.d.ts"
},
"./contexts/authentication": {
"import": "./dist/contexts/authentication.mjs",
"types": "./dist/contexts/authentication.d.ts"
},
"./contexts/pubsub": {
"import": "./dist/contexts/pubsub.mjs",
"types": "./dist/contexts/pubsub.d.ts"
}
},
"files": [
"dist",
"src"
],
"size-limit": [
{
"path": "dist/index.js",
"limit": "200 ms",
"webpack": false
}
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c",
"size": "npm run build && size-limit",
"docs:build": "typedoc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysilio-co/swrlit.git"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"solid",
"http",
"swr",
"react"
],
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@size-limit/preset-big-lib": "^7.0.8",
"@types/jest": "^28.1.4",
"@types/react": "^17.0.0",
"esbuild": "^0.14.48",
"husky": "^8.0.3",
"jest": "^28.1.2",
"lint-staged": "^13.1.2",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"size-limit": "^7.0.8",
"ts-jest": "^28.0.5",
"tslib": "^2.4.0",
"typedoc": "^0.23.15",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.7.4"
},
"dependencies": {
"@inrupt/solid-client": "^1.23.1",
"@inrupt/solid-client-authn-browser": "^1.12.1",
"@inrupt/vocab-common-rdf": "^1.0.3",
"@inrupt/vocab-solid-common": "^0.7.5",
"dequal": "^2.0.2",
"swr": "^1.3.0",
"url-parse": "^1.4.7"
}
}