-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.23 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
{
"name": "audio-metadata-reader",
"version": "1.0.1",
"description": "A module for Foundry Virtual Tabletop that allows setting the title of Playlist Sounds based on the audio metadata of the underlying files.",
"private": true,
"scripts": {
"build": "run-s clean:files build:files",
"build:files": "rollup -c",
"watch": "rollup -c -w",
"link-package": "node ./tools/link-package.mjs",
"clean": "run-p clean:files clean:link",
"clean:files": "rimraf dist",
"clean:link": "node ./tools/link-package.mjs --clean",
"lint": "eslint --ignore-path .gitignore --ext .js,.mjs .",
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.mjs --fix .",
"format": "prettier --ignore-path .gitignore --write \"./**/*.(js|mjs|json|css|yml)\"",
"release": "standard-version",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghost-fvtt/audio-metadata-reader.git"
},
"contributors": [
{
"name": "Johannes Loher",
"email": "[email protected]",
"discord": "ghost#2000"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ghost-fvtt/audio-metadata-reader/issues"
},
"homepage": "https://github.com/ghost-fvtt/audio-metadata-reader#readme",
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@ironkinoko/rollup-plugin-styles": "4.0.3",
"@guanghechen/rollup-plugin-copy": "6.0.2",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"rollup": "3.29.5",
"rollup-plugin-livereload": "2.0.5",
"standard-version": "9.5.0",
"stringify-package": "1.0.1"
},
"lint-staged": {
"*.(js|mjs)": "eslint --ignore-path .gitignore --fix",
"*.(json|yml)": "prettier --ignore-path .gitignore --write"
},
"dependencies": {
"jsmediatags": "3.9.7",
"parse-audio-metadata": "1.3.1"
}
}