-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.91 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
{
"name": "@addasoft/album-art-component",
"version": "3.1.0",
"private": false,
"description": "A webcomponent that fetches album and artist art from different sources",
"main": "src/album-art.ts",
"module": "src/album-art.ts",
"scripts": {
"copyindex": "cp src/index.html build",
"copywc": "cp -r node_modules/@webcomponents/webcomponentsjs/bundles build && cp node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js build",
"build": "rm -rf build && mkdir build && npm run copyindex && npm run copywc && tsc && rollup -c",
"start": "tsc && serve build",
"tsc:watch": "tsc --watch",
"tsc:build": "tsc",
"postversion": "npm run build && npm publish --access public && git push && git push --tags",
"analyse": "custom-elements-manifest analyze --litelement --outdir build --globs \"src/**/*.ts\"",
"analyse:watch": "custom-elements-manifest analyze --litelement --outdir build --globs \"src/**/*.ts\" --watch"
},
"author": "Lucien Immink <lucien@arielext.org>",
"repository": {
"type": "GIT",
"url": "git+https://github.com/lucienimmink/album-art-webcomponent.git"
},
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.1",
"idb-keyval": "^6.2.0",
"lit": "^2.2.6",
"rollup-plugin-dotenv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@custom-elements-manifest/analyzer": "^0.6.3",
"@webcomponents/webcomponentsjs": "^2.5.0",
"rollup": "^3.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"serve": "^14.0.0",
"tslib": "^2.2.0",
"typescript": "^5.0.0"
},
"bugs": {
"url": "https://github.com/lucienimmink/album-art-webcomponent/issues"
},
"homepage": "https://github.com/lucienimmink/album-art-webcomponent#readme"
}