-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "@chordbook/metronome",
"version": "0.0.1",
"license": "GPL-3.0",
"type": "module",
"description": "The metronome used by ChordBook.app",
"module": "dist/index.js",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"prepare": "tsup src/index.ts --format esm,cjs --minify --dts --sourcemap",
"build": "vite build --outDir demo",
"preview": "vite preview",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chordbook/metronome.git"
},
"keywords": [
"music",
"metronome"
],
"author": "Brandon Keepers",
"bugs": {
"url": "https://github.com/chordbook/metronome/issues"
},
"homepage": "https://github.com/chordbook/metronome#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"daisyui": "^4.10.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
},
"dependencies": {
"iosunmute": "^1.0.3"
}
}