forked from the1812/flac-tagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 986 Bytes
/
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
{
"name": "flac-stream-tagger",
"version": "1.0.7",
"description": "Pure JavaScript FLAC Tag writer and reader.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Inrixia/flac-stream-tagger.git"
},
"scripts": {
"watch": "tsc --watch --sourceMap",
"build": "npm run cleanup && tsc",
"test-watch": "vitest",
"test": "vitest run",
"cleanup": "rimraf dist",
"prepare": "npm run build"
},
"keywords": [
"nodejs",
"metadata",
"tags",
"flac",
"music"
],
"author": "Inrixia (https://github.com/Inrixia)",
"license": "SEE LICENSE.md",
"devDependencies": {
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"eslint": "9.5.0",
"rimraf": "^5.0.7",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "5.5.2",
"vitest": "^1.6.0"
},
"dependencies": {
"imageinfo": "^1.0.4"
}
}