-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.14 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": "@rviscomi/capo.js",
"version": "1.5.3",
"description": "Get your ﹤𝚑𝚎𝚊𝚍﹥ in order",
"author": "Rick Viscomi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rviscomi/capo.js.git"
},
"bugs": {
"url": "https://github.com/rviscomi/capo.js/issues"
},
"homepage": "https://rviscomi.github.io/capo.js/",
"type": "module",
"main": "src/main.js",
"directories": {
"doc": "docs"
},
"targets": {
"snippet": {
"source": "src/snippet/capo.js",
"distDir": "snippet",
"sourceMap": false,
"optimize": false
},
"crx": {
"source": "src/crx/capo.js",
"distDir": "crx",
"sourceMap": false
},
"crx-options": {
"source": "src/crx/options.js",
"distDir": "crx/options",
"sourceMap": false
},
"web": {
"source": "src/web/capo.js",
"distDir": "docs/src/lib",
"outputFormat": "esmodule",
"isLibrary": true,
"sourceMap": false
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"devDependencies": {
"parcel": "latest"
}
}