-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "pausa",
"version": "0.4.1",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"main": "dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"compile": "tsup",
"prepare": "npm run compile && npm run test",
"release": "changeset publish",
"version": "changeset version"
},
"author": "Cristian Ramos <hello@cvr.im>",
"license": "ISC",
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"happy-dom": "^14.7.1",
"lru-cache": "^10.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"keywords": [
"library",
"typescript",
"react",
"suspense",
"data",
"fetching",
"caching",
"utilities"
],
"description": "A small set of utilities to help you manage data fetching and caching in React using Suspense."
}