mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

* refactor: add a valibot schema for package registry validation * fix: list view action menu * chore: bump version to 0.1.16 in package.json * refactor: extract supabase package from api * ci: remove NODE_OPTIONS from build step and improve error handling in getLatestNpmPkgVersion function
27 lines
562 B
JSON
27 lines
562 B
JSON
{
|
|
"name": "@kksh/package-registry",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "bun test --coverage",
|
|
"posttest": "verify-package-export verify"
|
|
},
|
|
"exports": {
|
|
"./jsr": "./src/jsr/index.ts",
|
|
"./npm": "./src/npm/index.ts",
|
|
"./github": "./src/github.ts",
|
|
"./models": "./src/models.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"verify-package-export": "^0.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@huakunshen/jsr-client": "^0.1.5",
|
|
"@kksh/api": "workspace:*",
|
|
"@octokit/rest": "^21.1.0"
|
|
}
|
|
}
|