openpkg-sdk
Version:
TypeScript package specification SDK
49 lines (48 loc) • 1.2 kB
JSON
{
"name": "openpkg-sdk",
"version": "0.4.12",
"description": "TypeScript package specification SDK",
"keywords": ["typescript", "documentation", "sdk", "openpkg", "package-analysis"],
"homepage": "https://github.com/openpkg/openpkg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openpkg/openpkg.git",
"directory": "packages/sdk"
},
"license": "MIT",
"author": "Ryan Waits",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/"
},
"files": ["dist"],
"dependencies": {
"typescript": "^5.0.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"bunup": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}