forked from mysilio-co/swrlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.26 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
{
"name": "swrlit",
"version": "1.0.0-beta.2",
"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/swrlit.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"build:docs": "typedoc --tsconfig tsconfig.json",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/swrlit.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/swrlit.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@size-limit/preset-small-lib": "^4.8.0",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.0.28",
"@storybook/addons": "^6.0.28",
"@storybook/react": "^6.0.28",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^25.2.3",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/url-parse": "^1.4.3",
"babel-loader": "^8.2.1",
"molid": "^0.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"size-limit": "^4.8.0",
"ts-jest": "^25.5.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.6",
"typescript": "^4.4.4",
"whatwg-fetch": "^3.5.0"
},
"dependencies": {
"@inrupt/solid-client": "^1.14.0",
"@inrupt/solid-client-authn-browser": "^1.11.2",
"@inrupt/vocab-common-rdf": "^1.0.3",
"@inrupt/vocab-solid-common": "^0.7.5",
"dequal": "^2.0.2",
"swr": "^1.0.1",
"url-parse": "^1.4.7"
}
}