Every package under packages/, apps/, and vendor/ drops "private": true and declares publishConfig.access "restricted": the repository now states which packages it publishes instead of deciding it at publish time. Each one also declares its repository and directory, which is how a consumer of a private package reaches its source. The Landlock packages move to restricted with them. They have never been published, so nothing anonymous depends on them today, and the whole @deepseek-ai scope stays private. The workspace constraint that required every package to be private now applies to non-members only, and asserts the publishable trio on each release member.
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@deepseek-ai/cordis",
|
|
"description": "Meta-Framework for Modern JavaScript Applications",
|
|
"version": "4.0.0-rc.7",
|
|
"publishConfig": {
|
|
"access": "restricted"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
"directory": "vendor/cordis"
|
|
},
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"bin": "bin.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/types/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"./src/*": "./src/*",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"lib/index.js",
|
|
"lib/types/**/*.d.ts",
|
|
"lib/types/**/*.d.ts.map",
|
|
"bin.js"
|
|
],
|
|
"author": "Shigma <shigma10826@gmail.com>",
|
|
"license": "MIT",
|
|
"peerDependencies": {
|
|
"@deepseek-ai/cordis-plugin-include": "^1.0.4",
|
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.0-rc.5"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@deepseek-ai/cordis-plugin-include": {
|
|
"optional": true
|
|
},
|
|
"@deepseek-ai/cordis-plugin-loader": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@standard-schema/spec": "^1.1.0",
|
|
"@deepseek-ai/cosmokit": "^1.8.1"
|
|
}
|
|
}
|