133 lines
3.2 KiB
JSON
133 lines
3.2 KiB
JSON
{
|
|
"name": "bippy",
|
|
"version": "0.6.1",
|
|
"description": "hack into react internals",
|
|
"keywords": [
|
|
"bippy",
|
|
"fiber",
|
|
"internals",
|
|
"react",
|
|
"react devtools",
|
|
"react fiber",
|
|
"react instrumentation"
|
|
],
|
|
"homepage": "https://bippy.dev",
|
|
"bugs": {
|
|
"url": "https://github.com/aidenybai/bippy/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Aiden Bai",
|
|
"email": "aiden@million.dev"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/aidenybai/bippy.git"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"browser": "dist/index.iife.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./core": {
|
|
"import": {
|
|
"types": "./dist/core.d.ts",
|
|
"default": "./dist/core.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/core.d.cts",
|
|
"default": "./dist/core.cjs"
|
|
}
|
|
},
|
|
"./install-hook-only": {
|
|
"import": {
|
|
"types": "./dist/install-hook-only.d.ts",
|
|
"default": "./dist/install-hook-only.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/install-hook-only.d.cts",
|
|
"default": "./dist/install-hook-only.cjs"
|
|
}
|
|
},
|
|
"./source": {
|
|
"import": {
|
|
"types": "./dist/source.d.ts",
|
|
"default": "./dist/source.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/source.d.cts",
|
|
"default": "./dist/source.cjs"
|
|
}
|
|
},
|
|
"./react-refresh": {
|
|
"import": {
|
|
"types": "./dist/react-refresh.d.ts",
|
|
"default": "./dist/react-refresh.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/react-refresh.d.cts",
|
|
"default": "./dist/react-refresh.cjs"
|
|
}
|
|
},
|
|
"./dist/*": "./dist/*.js",
|
|
"./dist/*.js": "./dist/*.js",
|
|
"./dist/*.cjs": "./dist/*.cjs"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
"@react-pdf/renderer": "^4.5.1",
|
|
"@react-three/fiber": "^9.6.1",
|
|
"@react-three/test-renderer": "^9.1.0",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/react": "^16.1.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitest/coverage-istanbul": "^4.1.10",
|
|
"happy-dom": "^15.11.7",
|
|
"ink": "^7.1.1",
|
|
"ink-testing-library": "^4.0.0",
|
|
"publint": "^0.3.0",
|
|
"react": "19.0.0",
|
|
"react-devtools-inline": "^6.0.1",
|
|
"react-dom": "19.0.0",
|
|
"react-nil": "^2.0.0",
|
|
"react-refresh": "^0.16.0",
|
|
"remotion": "^4.0.496",
|
|
"three": "^0.185.1",
|
|
"tsx": "^4.21.0",
|
|
"vite-plus": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=17.0.1"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production vp pack && tsx scripts/append-banner.ts",
|
|
"dev": "NODE_ENV=development vp pack --watch",
|
|
"publint": "publint",
|
|
"test": "vp test",
|
|
"coverage": "vp test --coverage"
|
|
}
|
|
} |