macOS 관련 파일 무시 규칙 추가 및 파일 이름 정규화 기능 개선

This commit is contained in:
2024-12-16 22:17:47 +09:00
parent d8c15b6653
commit 24390231bc
5 changed files with 196 additions and 43 deletions

50
package.json Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "nfd-to-nfc-converter",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.pieroot.nfdtonfc",
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg",
"pkg"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"extraResources": [
{
"from": "scripts",
"to": "scripts",
"filter": [
"**/*"
]
}
]
},
"dependencies": {
"chokidar": "^4.0.1"
}
}