-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
144 lines (144 loc) · 4.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "nora",
"version": "3.0.0-stable",
"description": "An Electron application with React and TypeScript",
"keywords": [
"music",
"electron",
"react",
"typescript",
"music-player",
"lyrics",
"windows",
"desktop"
],
"main": "./out/main/main.js",
"author": {
"email": "[email protected]",
"name": "Sandakan Nipunajith",
"url": "https://github.com/Sandakan"
},
"homepage": "https://github.com/Sandakan/Nora",
"urls": {
"discord_invite_url": "https://discord.gg/c5rGKnBs4y",
"raw_repository_url": "https://raw.githubusercontent.com/Sandakan/Nora/",
"website_url": "https://noramusic.netlify.app/"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Sandakan/Nora/issues"
},
"releaseNotes": {
"json": "https://raw.githubusercontent.com/Sandakan/Nora/master/release-notes.json",
"md": "https://raw.githubusercontent.com/Sandakan/Nora/master/changelog.md"
},
"repository": {
"type": "git",
"url": "https://github.com/Sandakan/Nora"
},
"appPreferences": {
"metadataEditingSupportedExtensions": [
"mp3"
],
"removeReactStrictMode": true,
"showSongIdInsteadOfSongYear": false,
"supportedMusicExtensions": [
"mp3",
"wav",
"ogg",
"aac",
"m4r",
"flac"
]
},
"overrides": {
"phin": "^3.7.1",
"node-vibrant": {
"@vibrant/image-node": {
"@jimp/types": {
"@jimp/jpeg": {
"jpeg-js": "^0.4.4"
}
}
}
}
},
"scripts": {
"test": "jest --collect-coverage",
"check-types": "tsc --noEmit",
"husky-test": "npm run prettier-check && npm run test",
"lint-fix": "cross-env NODE_ENV=development eslint . --fix --ext .ts,.tsx",
"lint-save-results": "cross-env NODE_ENV=development eslint . --ext .ts,.tsx -o ./lint_results.txt",
"prepare": "husky install",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --inspect --sourcemap --watch",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win --publish=never",
"build:mac": "electron-vite build && electron-builder --mac --publish=never",
"build:linux": "electron-vite build && electron-builder --linux --publish=never"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@vitalets/google-translate-api": "^9.2.0",
"didyoumean2": "^6.0.1",
"discord-rpc-revamp": "^2.0.3",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.7",
"i18next": "^23.7.6",
"music-metadata": "^7.13.4",
"node-id3": "^0.2.6",
"node-vibrant": "^3.2.1-alpha.1",
"react-beautiful-dnd": "^13.1.1",
"react-i18next": "^14.0.0",
"react-virtuoso": "^4.7.10",
"sharp": "^0.33.2",
"songlyrics": "^2.4.5",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/react": "^18.2.48",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"electron": "^30.0.0",
"electron-builder": "^24.4.0",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}