-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.68 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
53
54
55
56
57
58
59
60
{
"name": "@ca-plant-list/ca-plant-list",
"version": "0.4.14",
"description": "Tools to create Jekyll files for a website listing plants in an area of California.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ca-plants/ca-plant-list.git"
},
"homepage": "https://github.com/ca-plants/ca-plant-list",
"type": "module",
"files": [
"data",
"ebook",
"jekyll",
"lib",
"scripts",
"types"
],
"exports": {
".": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"scripts": {
"check": "npm run eslint && npm run tsc",
"eslint": "npx eslint",
"prettier": "npx prettier -l .",
"tsc": "npx tsc"
},
"bin": {
"ca-plant-list": "scripts/build-site.js",
"ca-plant-book": "scripts/build-ebook.js",
"cpl-photos": "scripts/cpl-photos.js",
"cpl-tools": "scripts/cpl-tools.js"
},
"dependencies": {
"archiver": "^5.3.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"csv-parse": "^5.3.1",
"csv-stringify": "^6.5.1",
"image-size": "^1.1.1",
"markdown-it": "^14.1.0",
"sharp": "^0.33.5",
"svgo-ll": "^5.6.0",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@htmltools/scrape": "^0.1.0",
"@types/archiver": "^6.0.2",
"@types/cli-progress": "^3.11.6",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.2",
"@types/unzipper": "^0.10.9",
"eslint": "^9.17.0",
"exceljs": "^4.4.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}