-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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": "create-fetcher",
"version": "0.6.2",
"description": "customizable data fetcher wrapper for remote data fetching",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run compile",
"compile": "tsc -d",
"start": "concurrently npm:start:ts npm:start:sync-to-example npm:start:example",
"start:ts": "npm run compile -- --watch",
"start:sync-to-example": "msf --mode mirror ./ examples/react/node_modules/create-fetcher",
"start:example": "cd examples/react && npm start",
"release": "npm test && npm run build && standard-version && git push --follow-tags origin master && npm publish",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocwind/create-fetcher.git"
},
"keywords": [
"fetch",
"swr",
"request"
],
"author": "Roc",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocwind/create-fetcher/issues"
},
"homepage": "https://github.com/rocwind/create-fetcher#readme",
"devDependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@types/jest": "29.5.14",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.isequal": "4.5.8",
"@types/object-hash": "2.2.1",
"@types/react": "18.3.28",
"concurrently": "9.2.1",
"jest": "29.7.0",
"msf-cli": "1.2.5",
"react": "18.3.1",
"standard-version": "9.5.0",
"ts-jest": "29.3.2",
"typescript": "4.8.4"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"lodash.debounce": "^4.0.8",
"object-hash": "^3.0.0"
}
}