-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.55 KB
/
package.json
File metadata and controls
87 lines (87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "valync",
"version": "0.3.4",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"repository": {
"url": "https://github.com/epikoder/valync",
"type": "git"
},
"exports": {
".": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"valync",
"riverpod",
"riverpod-js",
"async",
"async-data",
"async-state",
"state-management",
"data-fetching",
"api-response",
"cache",
"error-handling",
"abortcontroller",
"option-result",
"ts-results",
"typescript",
"client-side",
"promise-wrapper",
"http-client",
"react",
"react-hook",
"react-async",
"vue",
"vue3",
"vue-async",
"vue-composition-api",
"lightweight",
"monorepo",
"frontend-utils",
"data-hooks",
"custom-hook",
"swr",
"tanstack-query",
"epikoder"
],
"scripts": {
"build": "tsc -b",
"prepublishOnly": "pnpm build",
"test": "jest"
},
"dependencies": {
"ts-results-es": "^5.0.1"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"jest": "^30.0.2",
"ts-jest": "^29.4.0"
},
"peerDependencies": {
"react": "^18.0.0",
"vue": "^3.0.0"
}
}