mirror of
https://github.com/morten-olsen/refocus.dev.git
synced 2026-02-08 00:46:25 +01:00
39 lines
885 B
JSON
39 lines
885 B
JSON
{
|
|
"devDependencies": {
|
|
"@refocus/config": "workspace:^",
|
|
"@types/react": "^18.0.37",
|
|
"@types/uuid": "^9.0.2",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"default": "./dist/esm/index.js",
|
|
"types": "./dist/esm/types/index.d.ts"
|
|
},
|
|
"require": {
|
|
"default": "./dist/cjs/index.js",
|
|
"types": "./dist/cjs/types/index.d.ts"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"main": "./dist/cjs/index.js",
|
|
"name": "@refocus/sdk",
|
|
"scripts": {
|
|
"build": "pnpm build:esm && pnpm build:cjs",
|
|
"build:cjs": "tsc -p tsconfig.json",
|
|
"build:esm": "tsc -p tsconfig.esm.json"
|
|
},
|
|
"types": "./dist/cjs/types/index.d.ts",
|
|
"dependencies": {
|
|
"@linear/sdk": "^5.0.0",
|
|
"@sinclair/typebox": "^0.28.15",
|
|
"@slack/web-api": "^6.8.1",
|
|
"octokit": "^2.0.19",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|