-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 835 Bytes
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
{
"name": "marian-extension",
"version": "2.1.0",
"description": "Extracts book details from Amazon product pages. Created for the fine librarian corps of Hardcover.app.",
"main": "background.js",
"type": "module",
"scripts": {
"build": "npm run generate && npm run build:all",
"build:all": "node build.js",
"generate": "node generate-extractor.js",
"update-groups": "node fetchGroups.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobtender/marian-extension.git"
},
"keywords": [],
"author": "Jacob Tender",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobtender/marian-extension/issues"
},
"homepage": "https://github.com/jacobtender/marian-extension#readme",
"devDependencies": {
"esbuild": "^0.25.8",
"xml2js": "^0.6.2"
}
}