fonts-packages/package.json
bo.yu b3d1713795 chore(project-setup): Reorganize project structure and simplify documentation
- Streamline .gitignore to focus on essential patterns (dependencies, build outputs, environment, IDE, OS, logs)
- Remove redundant entries and consolidate related ignore rules
- Simplify README.md by removing detailed usage examples and focusing on core setup steps
- Reorganize font file structure with new npm-package layout
- Add Cjkfqlt-Regular.js font to npm-package distribution
- Update package.json and fonts.json metadata
- Reorganize Python scripts with new README documentation
- Rename and restructure font analysis and subset creation scripts
- Update convert.js script for improved font conversion workflow
- Add package-lock.json for dependency management
- Reduce documentation verbosity while maintaining essential information for quick start
2025-11-25 15:00:50 +08:00

38 lines
999 B
JSON

{
"name": "chinese-font-repository",
"version": "1.0.0",
"description": "Chinese web fonts repository with automated conversion, analysis, and publishing",
"main": "index.js",
"scripts": {
"analyze": "python3 python-scripts/analyze-fonts.py",
"subset": "python3 python-scripts/create-font-subsets.py",
"convert": "node scripts/convert.js",
"build": "npm run analyze && npm run subset && npm run convert",
"upload": "node scripts/upload.js",
"publish": "node scripts/publish.js",
"clean": "node scripts/clean.js --deep"
},
"keywords": [
"fonts",
"chinese",
"cjk",
"webfonts",
"font-conversion"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"ali-oss": "^6.18.1",
"cn-font-split": "^7.3.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"p-limit": "^3.1.0",
"semver": "^7.5.4",
"yargs": "^17.7.2"
},
"devDependencies": {},
"engines": {
"node": ">=18.0.0"
}
}