-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "traste",
"description": "A library for rendering guitar and ukulele fretboards as SVG elements.",
"version": "1.0.0",
"author": "Ramiro Gómez (https://ramiro.org/)",
"bugs": {
"url": "https://github.com/yaph/traste/issues",
"email": "code@ramiro.org"
},
"dependencies": {
"@tonaljs/tonal": "^4.10.0",
"cromatica": "^0.3.0",
"d3-selection": "^3.0.0"
},
"devDependencies": {
"@types/d3-selection": "^3.0.11",
"esbuild": "^0.28.0",
"typescript": "^5.0.0"
},
"directories": {
"example": "examples"
},
"files": [
"src/**/*",
"dist/**/*"
],
"homepage": "https://github.com/yaph/traste",
"keywords": [
"bass",
"fingerboard",
"fret",
"fretboard",
"guitar",
"instrument",
"music",
"music theory",
"musical chords",
"musical notes",
"musical scales",
"svg",
"uke",
"ukulele"
],
"license": "MIT",
"main": "dist/traste.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yaph/traste.git"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run build:js && npm run build:types",
"build:js": "node build.mjs",
"build:types": "tsc",
"serve": "esbuild src/index.ts --bundle --outfile=dist/traste.js --format=iife --global-name=traste --watch --servedir=."
},
"types": "dist/traste.d.ts"
}