-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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": "rsckit",
"version": "0.0.1",
"description": "Tools for exploring and diagnosing RSCs in Next.js apps",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./components": "./dist/components/index.js"
},
"bin": {
"rsckit": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/whyboris/TypeScript-Call-Graph.git"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch --ignore-watch **/*.test.ts",
"lint": "biome lint src",
"format": "biome format src --write",
"test": "jest",
"rsckit:explore": "./bin/cli.cjs explore"
},
"engines": {
"node": ">=18.18.0"
},
"keywords": [
"react",
"next.js",
"rsc",
"react server components"
],
"license": "MIT",
"author": "Phil Zona <[email protected]>",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/jscodeshift": "^0.12.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@root/walk": "^1.1.0",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"dependency-tree": "^11.0.1",
"jscodeshift": "^17.1.1",
"react": "^19.0.0"
}
}