mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
27 lines
739 B
JSON
27 lines
739 B
JSON
|
{
|
||
|
"name": "@posthog/apps-common",
|
||
|
"version": "0.0.0",
|
||
|
"license": "MIT",
|
||
|
"source": "src/index.ts",
|
||
|
"main": "dist/index.js",
|
||
|
"types": "dist/index.d.ts",
|
||
|
"scripts": {
|
||
|
"build": "yarn build:source && yarn build:types && ls -lah dist/",
|
||
|
"build:source": "echo \"Building source\" && node build.mjs",
|
||
|
"build:types": "echo \"Building types\" && tsup src/index.ts --dts-only",
|
||
|
"prepublishOnly": "yarn build"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"tsup": "^5.12.8",
|
||
|
"typescript": ">=4.0.0"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"@posthog/lemonade": "*",
|
||
|
"antd": "*",
|
||
|
"kea": "*",
|
||
|
"kea-router": "*",
|
||
|
"react": "*",
|
||
|
"react-dom": "*"
|
||
|
}
|
||
|
}
|