-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 1.77 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
88
89
90
91
92
{
"name": "next-cache-explorer",
"version": "0.0.0-semantically-released",
"description": "Navigate & debug the Next.js data cache",
"license": "MIT",
"author": {
"name": "François Best",
"email": "npm@francoisbest.com",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/47ng/next-cache-explorer.git"
},
"keywords": [
"next",
"nextjs",
"cache",
"plugin"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"sceau.json"
],
"type": "module",
"sideEffects": false,
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"tsup": {
"format": [
"esm"
],
"dts": true,
"sourcemap": true,
"entryPoints": [
"src/index.ts"
],
"treeshake": true
},
"scripts": {
"typecheck": "tsc",
"build": "tsup --clean --external=react",
"ci": "run-p typecheck build",
"prepack": "sceau sign"
},
"peerDependencies": {
"next": ">=13.4"
},
"dependencies": {
"@47ng/codec": "^1.1.0",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^8.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.8.3",
"@types/react": "^18",
"next": ">=13.4",
"npm-run-all": "^4.1.5",
"react": "^18",
"sceau": "^1.3.0",
"semantic-release": "^22.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
},
"release": {
"branches": [
"main",
{
"name": "next",
"channel": "next",
"prerelease": true
}
]
}
}