Skip to content

Commit

Permalink
fix: corrupt package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
crherman7 committed May 22, 2024
1 parent a7a04ec commit 82b36ca
Showing 1 changed file with 99 additions and 1 deletion.
100 changes: 99 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1 +1,99 @@
{}
{
"name": "@crherman7/rechunk",
"version": "1.0.0-rc.4",
"description": "🚀 Render Remote Chunks with React Native",
"license": "MIT",
"private": true,
"repository": "[email protected]:crherman7/rechunk.git",
"homepage": "https://crherman7.github.io/rechunk",
"author": "Chris Herman <[email protected]>",
"keywords": [
"react-native",
"typescript",
"chunks",
"code-splitting",
"sdui",
"hosted-components"
],
"bin": {
"rechunk": "dist/cli/index.js"
},
"main": "dist/react-native/index.js",
"files": [
"android",
"dist",
"ios",
"plugin",
"rechunk.podspec"
],
"workspaces": [
"app",
"docs",
"example"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "husky",
"release": "release-it"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": false,
"push": false,
"commit": false
},
"github": {
"release": true
},
"npm": {
"release": true
},
"hooks": {
"before:init": "scripts/remove-workspace",
"after:release": "scripts/restore-workspace && git add -A && git commit -m \"chore: release v${version}\" && git push"
}
},
"source": "src/react-native/index",
"types": "dist/react-native/index.d.ts",
"dependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"base-64": "^1.0.0",
"chalk": "^4.0.0",
"cli-table3": "^0.6.4",
"commander": "^12.0.0",
"find-babel-config": "^2.1.1",
"rollup": "^4.13.0",
"tiny-emitter": "^2.1.0",
"tiny-invariant": "^1.3.3",
"tiny-warning": "^1.0.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@react-native/eslint-config": "^0.73.2",
"@react-native/typescript-config": "^0.74.0",
"@types/base-64": "^1.0.2",
"eslint": "^8.19.0",
"format-package": "^7.0.0",
"husky": "^9.0.11",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-native": "^0.73.6",
"release-it": "^17.3.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}

0 comments on commit 82b36ca

Please sign in to comment.