mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-07-03 20:59:22 +08:00
The data-classification extract/validate/check workflow has completed its staged mission; only the code-generation pipeline remains in use. - package.json: replace extract/validate/validate:gen/check:duplicates/all with an echo notice; keep generate and generate:* intact - rename the four retired scripts with a DO-NOT-USE- prefix (git mv) - README: document the deprecation via a global notice, a status column on the command table, renamed file references, and historical-section markers
32 lines
1.4 KiB
JSON
32 lines
1.4 KiB
JSON
{
|
|
"name": "data-classify",
|
|
"version": "2.0.0",
|
|
"description": "Data classification and code generation tools for Cherry Studio data refactoring",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"scripts": {
|
|
"extract": "echo \"This command has completed its mission and is no longer supported. If you have any questions, please contact the author.\"",
|
|
"generate": "node scripts/generate-all.js",
|
|
"generate:preferences": "node scripts/generate-preferences.js",
|
|
"generate:boot-config": "node scripts/generate-boot-config.js",
|
|
"generate:migration": "node scripts/generate-migration.js",
|
|
"validate": "echo \"This command has completed its mission and is no longer supported. If you have any questions, please contact the author.\"",
|
|
"validate:gen": "echo \"This command has completed its mission and is no longer supported. If you have any questions, please contact the author.\"",
|
|
"check:duplicates": "echo \"This command has completed its mission and is no longer supported. If you have any questions, please contact the author.\"",
|
|
"all": "echo \"This command has completed its mission and is no longer supported. If you have any questions, please contact the author.\""
|
|
},
|
|
"keywords": [
|
|
"data-classification",
|
|
"code-generation",
|
|
"migration"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"glob": "^11.0.3"
|
|
}
|
|
}
|