Files
kintone-plugin-docx/package.json
Yoshihiro OKUMURA 94b7277b3a feat: Upgrade plugin version to 2.0.0 and refactor configuration handling
- Updated version numbers in package.json, package-lock.json, and manifest.json to 2.0.0.
- Refactored configuration types to use data sources (SELF, APP) instead of type-based configurations.
- Enhanced settings UI to allow selection between using the current record or another app's record.
- Improved error handling and validation for configuration settings.
- Added new input component for better handling of text inputs in settings.
- Updated localization files for new settings structure and error messages.
- Optimized API calls with memoization for fetching form field properties and checking configurations.
2025-10-02 13:26:46 +09:00

55 lines
1.6 KiB
JSON

{
"name": "kintone-plugin-docx",
"version": "2.0.0",
"scripts": {
"gen": "run-s gen:*",
"gen:key": "node scripts/generate-private-key.js",
"start": "node scripts/npm-start.js",
"develop": "npm run build -- --watch",
"prebuild": "npm run gen",
"prebuild:prod": "npm run gen",
"build": "cross-env NODE_ENV=development rspack build",
"build:prod": "cross-env NODE_ENV=production rspack build",
"cspell": "cspell .",
"lint": "biome lint .",
"format": "biome check --write .",
"upload": "env-cmd --silent kintone-plugin-uploader dist/plugin.zip --watch --waiting-dialog-ms 3000"
},
"dependencies": {
"@kintone/rest-api-client": "^5.7.5",
"angular-expressions": "^1.5.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.18",
"docxtemplater": "^3.66.4",
"file-saver": "^2.0.5",
"i18next": "^25.5.3",
"moize": "^6.1.6",
"pizzip": "^3.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"react-i18next": "^16.0.0",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@kintone/dts-gen": "^8.1.3",
"@kintone/plugin-uploader": "^9.1.5",
"@kintone/webpack-plugin-kintone-plugin": "^8.0.11",
"@rspack/cli": "^1.5.8",
"@rspack/core": "^1.5.8",
"@types/file-saver": "^2.0.7",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"cross-env": "^10.1.0",
"cspell": "^9.2.1",
"env-cmd": "^11.0.0",
"globals": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}