-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "@chordbook/tuner",
"version": "0.0.3",
"license": "GPL-3.0",
"type": "module",
"description": "The tuner 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/tuner.git"
},
"keywords": [
"guitar",
"ukulele",
"tuner"
],
"author": "Brandon Keepers",
"bugs": {
"url": "https://github.com/chordbook/tuner/issues"
},
"homepage": "https://github.com/chordbook/tuner#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
},
"dependencies": {
"pitchy": "^4.1.0"
}
}