build(release): make the release set publishable under the private scope

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.
This commit is contained in:
imccyu
2026-08-11 00:02:53 +08:00
parent 4e91230dd6
commit 97eb14a007
221 changed files with 1764 additions and 222 deletions

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis",
"description": "Meta-Framework for Modern JavaScript Applications",
"version": "4.0.0-rc.7",
"private": true,
"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",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cosmokit",
"description": "A collection of common utilities",
"version": "1.8.1",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/cosmokit"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-group",
"description": "Nested plugin group for cordis",
"version": "1.0.0",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/group"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-hmr",
"description": "Hot Module Replacement Plugin for Cordis",
"version": "1.0.15",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/hmr"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-include",
"description": "Include files in cordis configurations",
"version": "1.0.4",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/include"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-loader",
"description": "Plugin loader for cordis",
"version": "1.0.0-rc.5",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/loader"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-logger-console",
"description": "Console logger exporter for cordis",
"version": "1.0.0",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/logger-console"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/shared.d.ts",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/schemastery",
"description": "Type driven schema validator",
"version": "3.18.0",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/schemastery"
},
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",

View File

@@ -2,7 +2,14 @@
"name": "@deepseek-ai/cordis-plugin-timer",
"description": "Timer service for cordis",
"version": "1.1.2",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
"directory": "vendor/timer"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",