mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 03:10:08 +08:00
- Add data-classify tools for data inventory extraction and code generation - Include consolidated Chinese documentation (README.md) - Update generated file path references This temporary directory will be removed after V2 refactor is complete.
31 lines
929 B
JSON
31 lines
929 B
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": "node scripts/extract-inventory.js",
|
|
"generate": "node scripts/generate-all.js",
|
|
"generate:preferences": "node scripts/generate-preferences.js",
|
|
"generate:migration": "node scripts/generate-migration.js",
|
|
"validate": "node scripts/validate-consistency.js",
|
|
"validate:gen": "node scripts/validate-generation.js",
|
|
"check:duplicates": "node scripts/check-duplicates.js",
|
|
"all": "npm run extract && npm run generate && npm run validate && npm run validate:gen"
|
|
},
|
|
"keywords": [
|
|
"data-classification",
|
|
"code-generation",
|
|
"migration"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"glob": "^11.0.3"
|
|
}
|
|
}
|