Skip to content

Commit d114965

Browse files
committed
Fix deps
1 parent f53028b commit d114965

2 files changed

Lines changed: 136 additions & 123 deletions

File tree

packages/bippy/package.json

Lines changed: 125 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,125 +1,127 @@
11
{
2-
"name": "bippy",
3-
"version": "0.2.24",
4-
"description": "hack into react internals",
5-
"keywords": [
6-
"bippy",
7-
"react",
8-
"react-instrumentation",
9-
"react instrumentation",
10-
"fiber",
11-
"internals"
12-
],
13-
"homepage": "https://bippy.dev",
14-
"bugs": {
15-
"url": "https://github.com/aidenybai/bippy/issues"
16-
},
17-
"repository": {
18-
"type": "git",
19-
"url": "git+https://github.com/aidenybai/bippy.git"
20-
},
21-
"license": "MIT",
22-
"author": {
23-
"name": "Aiden Bai",
24-
"email": "aiden@million.dev"
25-
},
26-
"sideEffects": false,
27-
"type": "module",
28-
"exports": {
29-
"./package.json": "./package.json",
30-
".": {
31-
"import": {
32-
"types": "./dist/index.d.ts",
33-
"default": "./dist/index.js"
34-
},
35-
"require": {
36-
"types": "./dist/index.d.cts",
37-
"default": "./dist/index.cjs"
38-
}
39-
},
40-
"./core": {
41-
"import": {
42-
"types": "./dist/core.d.ts",
43-
"default": "./dist/core.js"
44-
},
45-
"require": {
46-
"types": "./dist/core.d.cts",
47-
"default": "./dist/core.cjs"
48-
}
49-
},
50-
"./sw": {
51-
"import": {
52-
"types": "./dist/sw.d.ts",
53-
"default": "./dist/sw.js"
54-
},
55-
"require": {
56-
"types": "./dist/sw.d.cts",
57-
"default": "./dist/sw.cjs"
58-
}
59-
},
60-
"./experiments/inspect": {
61-
"import": {
62-
"types": "./dist/experiments/inspect.d.ts",
63-
"default": "./dist/experiments/inspect.js"
64-
},
65-
"require": {
66-
"types": "./dist/experiments/inspect.d.cts",
67-
"default": "./dist/experiments/inspect.cjs"
68-
}
69-
},
70-
"./dist/*": "./dist/*.js",
71-
"./dist/*.js": "./dist/*.js",
72-
"./dist/*.cjs": "./dist/*.cjs",
73-
"./dist/*.mjs": "./dist/*.mjs"
74-
},
75-
"main": "dist/index.js",
76-
"module": "dist/index.js",
77-
"browser": "dist/index.global.js",
78-
"types": "dist/index.d.ts",
79-
"files": [
80-
"dist",
81-
"bin",
82-
"package.json",
83-
"README.md",
84-
"LICENSE"
85-
],
86-
"scripts": {
87-
"build": "NODE_ENV=production tsup",
88-
"dev": "NODE_ENV=development tsup --watch",
89-
"publint": "publint",
90-
"test": "vitest",
91-
"coverage": "vitest run --coverage",
92-
"prepublishOnly": "cp ../../README.md . && pnpm build"
93-
},
94-
"devDependencies": {
95-
"@biomejs/biome": "1.9.4",
96-
"@testing-library/dom": "^10.4.0",
97-
"@testing-library/react": "^16.1.0",
98-
"@types/node": "^20",
99-
"@types/react": "^19.0.4",
100-
"@types/react-dom": "^19.0.2",
101-
"@vitest/coverage-istanbul": "2.1.8",
102-
"esbuild": "^0.24.2",
103-
"happy-dom": "^15.11.7",
104-
"pkg-pr-new": "^0.0.39",
105-
"publint": "^0.2.12",
106-
"react": "19.0.0",
107-
"react-devtools-inline": "^6.0.1",
108-
"react-dom": "19.0.0",
109-
"react-inspector": "^6.0.2",
110-
"react-reconciler": "^0.31.0",
111-
"react-refresh": "^0.16.0",
112-
"terser": "^5.36.0",
113-
"tsup": "^8.2.4",
114-
"vitest": "^2.1.8"
115-
},
116-
"publishConfig": {
117-
"access": "public"
118-
},
119-
"peerDependencies": {
120-
"react": ">=17.0.1"
121-
},
122-
"dependencies": {
123-
"@types/react-reconciler": "^0.28.9"
124-
}
2+
"name": "bippy",
3+
"version": "0.2.24",
4+
"description": "hack into react internals",
5+
"keywords": [
6+
"bippy",
7+
"react",
8+
"react-instrumentation",
9+
"react instrumentation",
10+
"fiber",
11+
"internals"
12+
],
13+
"homepage": "https://bippy.dev",
14+
"bugs": {
15+
"url": "https://github.com/aidenybai/bippy/issues"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "git+https://github.com/aidenybai/bippy.git"
20+
},
21+
"license": "MIT",
22+
"author": {
23+
"name": "Aiden Bai",
24+
"email": "aiden@million.dev"
25+
},
26+
"sideEffects": false,
27+
"type": "module",
28+
"exports": {
29+
"./package.json": "./package.json",
30+
".": {
31+
"import": {
32+
"types": "./dist/index.d.ts",
33+
"default": "./dist/index.js"
34+
},
35+
"require": {
36+
"types": "./dist/index.d.cts",
37+
"default": "./dist/index.cjs"
38+
}
39+
},
40+
"./core": {
41+
"import": {
42+
"types": "./dist/core.d.ts",
43+
"default": "./dist/core.js"
44+
},
45+
"require": {
46+
"types": "./dist/core.d.cts",
47+
"default": "./dist/core.cjs"
48+
}
49+
},
50+
"./sw": {
51+
"import": {
52+
"types": "./dist/sw.d.ts",
53+
"default": "./dist/sw.js"
54+
},
55+
"require": {
56+
"types": "./dist/sw.d.cts",
57+
"default": "./dist/sw.cjs"
58+
}
59+
},
60+
"./experiments/inspect": {
61+
"import": {
62+
"types": "./dist/experiments/inspect.d.ts",
63+
"default": "./dist/experiments/inspect.js"
64+
},
65+
"require": {
66+
"types": "./dist/experiments/inspect.d.cts",
67+
"default": "./dist/experiments/inspect.cjs"
68+
}
69+
},
70+
"./dist/*": "./dist/*.js",
71+
"./dist/*.js": "./dist/*.js",
72+
"./dist/*.cjs": "./dist/*.cjs",
73+
"./dist/*.mjs": "./dist/*.mjs"
74+
},
75+
"main": "dist/index.js",
76+
"module": "dist/index.js",
77+
"browser": "dist/index.global.js",
78+
"types": "dist/index.d.ts",
79+
"files": [
80+
"dist",
81+
"bin",
82+
"package.json",
83+
"README.md",
84+
"LICENSE"
85+
],
86+
"scripts": {
87+
"build": "NODE_ENV=production tsup",
88+
"dev": "NODE_ENV=development tsup --watch",
89+
"publint": "publint",
90+
"test": "vitest",
91+
"coverage": "vitest run --coverage",
92+
"prepublishOnly": "cp ../../README.md . && pnpm build"
93+
},
94+
"devDependencies": {
95+
"@biomejs/biome": "1.9.4",
96+
"@testing-library/dom": "^10.4.0",
97+
"@testing-library/react": "^16.1.0",
98+
"@types/node": "^20",
99+
"@types/react": "^19.0.4",
100+
"@types/react-dom": "^19.0.2",
101+
"@vitest/coverage-istanbul": "2.1.8",
102+
"esbuild": "^0.24.2",
103+
"happy-dom": "^15.11.7",
104+
"pkg-pr-new": "^0.0.39",
105+
"publint": "^0.2.12",
106+
"react": "19.0.0",
107+
"react-devtools-inline": "^6.0.1",
108+
"react-dom": "19.0.0",
109+
"react-inspector": "^6.0.2",
110+
"react-reconciler": "^0.31.0",
111+
"react-refresh": "^0.16.0",
112+
"terser": "^5.36.0",
113+
"tsup": "^8.2.4",
114+
"vitest": "^2.1.8"
115+
},
116+
"publishConfig": {
117+
"access": "public"
118+
},
119+
"peerDependencies": {
120+
"react": ">=17.0.1"
121+
},
122+
"dependencies": {
123+
"@types/react-reconciler": "^0.28.9",
124+
"error-stack-parser-es": "^1.0.5",
125+
"source-map-js": "^1.2.1"
126+
}
125127
}

pnpm-lock.yaml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)