-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.91 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.91 KB
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
{
"name": "mp3",
"version": "1.0.0",
"description": "",
"main": "",
"module": "",
"type": "module",
"author": "Valentin Degenne <vdegenne@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"dev": "wireit",
"build:mp3": "wireit",
"build": "wireit"
},
"wireit": {
"build:mp3": {
"command": "node ./scripts/build-mp3-data-file.cjs",
"files": [
"docs/files/**/*.mp3",
"scripts/build-mp3-data-file.cjs"
],
"output": [
"docs/mp3.json",
"public/mp3.json"
]
},
"build": {
"command": "vite build",
"files": [
"src/**/*.ts",
"vite.config.js"
],
"output": [
"docs/**/*",
"!docs/files"
],
"dependencies": [
"build:mp3"
]
},
"dev": {
"command": "vite --host",
"output": [
"node_modules/.vite"
],
"dependencies": [
"build:mp3"
]
}
},
"devDependencies": {
"@material/mwc-base": "^0.27.0",
"@material/mwc-top-app-bar": "^0.27.0",
"@material/web": "^1.0.1",
"@snar/lit": "^1.4.0",
"@vdegenne/material-color-helpers": "^1.3.0",
"@vite-pwa/assets-generator": "^0.0.10",
"custom-element-decorator": "^0.6.0",
"glob": "^10.3.10",
"html-minifier-terser": "^7.2.0",
"lit": "^3.0.1",
"lit-with-styles": "^1.1.1",
"material-3-prompt-dialog": "^0.11.0",
"pwa-helpers": "^0.9.1",
"rollup-plugin-material-all": "^1.0.0",
"rollup-plugin-md-icon-localize": "^0.1.0",
"rollup-plugin-minify-template-literals": "^1.1.3",
"snar": "^2.2.0",
"snar-save-to-local-storage": "^1.0.1",
"tailwindcss": "^3.3.5",
"terser": "^5.22.0",
"toastit": "^0.1.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-pwa": "^0.16.7",
"vite-plugin-singlefile": "^0.13.5",
"wireit": "^0.14.1"
}
}