Files
twenty/packages/twenty-sdk/package.json
T
2025-11-21 14:28:15 +00:00

42 lines
850 B
JSON

{
"name": "twenty-sdk",
"version": "0.0.6",
"license": "AGPL-3.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"application"
],
"scripts": {
"build": "vite build"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "5.9.2",
"vite": "^7.0.0",
"vite-plugin-dts": "3.8.1",
"vite-tsconfig-paths": "^4.2.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./application": {
"types": "./dist/application/index.d.ts",
"import": "./dist/application.mjs",
"require": "./dist/application.cjs"
}
},
"typesVersions": {
"*": {
"application": [
"dist/application/index.d.ts"
]
}
}
}