-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.03 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
{
"scripts": {
"lint:eslint": "eslint .",
"format:eslint": "eslint . --fix",
"lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" \"**/*.ts\" --write --ignore-path .gitignore",
"lint": "npm run lint:prettier",
"format": "npm run format:prettier",
"build": "vite build . && npm run analyse",
"preview": "vite preview .",
"start": "vite && npm run analyse:watch",
"dev": "npm run start",
"postversion": "git push && git push --tags",
"prepare": "husky install",
"zip": "node scripts/zip.js",
"deploy": "node scripts/deploy.js",
"zip:deploy": "npm run zip && npm run deploy",
"build:zip:deploy": "npm run build && npm run zip && npm run deploy",
"bzd": "npm run build:zip:deploy",
"analyse": "custom-elements-manifest analyze --litelement --outdir dist --globs \"src/**/*.ts\"",
"analyse:watch": "custom-elements-manifest analyze --litelement --outdir dist --globs \"src/**/*.ts\" --watch"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.2",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@lit-labs/compiler": "^1.0.3",
"@rollup/plugin-typescript": "^12.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.13.0",
"api-viewer-element": "^1.0.0-pre.10",
"dotenv": "^16.4.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"node-fetch": "^3.3.2",
"pinst": "^3.0.0",
"prettier": "^3.3.0",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-package-version": "^1.1.0",
"vite-plugin-preload": "^0.4.0",
"vite-plugin-pwa": "^0.21.0",
"workbox-broadcast-update": "^7.1.0",
"zip-a-folder": "^3.1.6"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format"
]
},
"name": "jsmusicdb",
"version": "3.50.18",
"description": "Web standards music database and player",
"author": "Lucien Immink",
"license": "MIT",
"repository": {
"url": "https://github.com/lucienimmink/JSMusicDB",
"type": "github"
},
"type": "module",
"dependencies": {
"@addasoft/musicdbcore": "^1.12.1",
"@addasoft/timespan": "^1.1.1",
"@lit-labs/router": "^0.1.3",
"@lit-labs/virtualizer": "^2.0.12",
"@thebespokepixel/es-tinycolor": "^3.1.0",
"audiomotion-analyzer": "^4.5.0",
"diacritics-normalizr": "^1.0.3",
"fast-average-color": "^9.4.0",
"fuse.js": "^7.0.0",
"idb-keyval": "^6.2.1",
"lit": "^3.1.3",
"urlpattern-polyfill": "^10.0.0"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.1"
}
}