-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "flac-tagger",
"version": "1.0.7",
"description": "Pure JavaScript FLAC Tag writer and reader.",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/the1812/flac-tagger.git"
},
"scripts": {
"watch": "tsc --watch --sourceMap",
"build-esm": "tsc",
"build-cjs": "tsc -p tsconfig.cjs.json",
"build": "npm-run-all -p build-esm build-cjs && tsconfig-to-dual-package",
"type-check": "tsc --noEmit",
"eslint-check": "eslint . --ext .cjs,.mjs,.ts",
"lint": "npm-run-all -p type-check eslint-check",
"eslint-fix": "eslint . --ext .cjs,.mjs,.ts --fix",
"test-watch": "vitest",
"test": "vitest run"
},
"keywords": [
"nodejs",
"metadata",
"tags",
"flac",
"music"
],
"author": "Grant Howard (https://github.com/the1812)",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@the1812/eslint-config": "1.0.1",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.38.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.10.0",
"npm-run-all": "^4.1.5",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "5.0.4",
"vitest": "^0.32.2"
},
"dependencies": {
"imageinfo": "^1.0.4"
}
}