Files
nocodb/packages/nocodb-sdk-v2/package.json
2026-01-13 22:53:02 +05:30

41 lines
948 B
JSON

{
"name": "nocodb-sdk-v2",
"version": "0.0.1",
"description": "NocoDB SDK",
"type": "module",
"license": "Sustainable Use License",
"author": {
"name": "NocoDB Inc",
"url": "https://nocodb.com/"
},
"homepage": "https://github.com/nocodb/nocodb",
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"generate:sdk": "node script/build.js",
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"swagger-typescript-api": "13.1.3",
"@rslib/core": "^0.7.1",
"@types/node": "^22.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "1.9.0"
},
"private": true
}