-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "phantomake",
"description": "A file-focused static site generator",
"version": "0.9.1",
"license": "ISC",
"module": "src/index.ts",
"bin": "./src/cli.ts",
"engines": {
"bun": "^1.0.13"
},
"type": "module",
"scripts": {
"cli": "bun run src/cli.ts",
"build": "rm -rf node_modules/fsevents && bun build src/cli.ts --compile --minify --outfile=phantomake",
"docs-build": "bun run src/cli.ts docs docs-dist",
"docs-watch": "bun run src/cli.ts watch docs"
},
"dependencies": {
"@types/ejs": "^3.1.5",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"consola": "^3.2.3",
"dayjs": "^1.11.10",
"dependency-graph": "^1.0.0",
"ejs": "^3.1.9",
"finalhandler": "^1.2.0",
"front-matter": "^4.0.2",
"glob": "^10.3.10",
"istextorbinary": "^8.1.0",
"lodash": "^4.17.21",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-directive": "^3.0.1",
"remark-gfm": "^4.0.0",
"remark-github-beta-blockquote-admonitions": "^2.1.3",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"send": "^0.18.0",
"serve-static": "^1.15.0",
"toml": "^3.0.0",
"unified": "^11.0.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/finalhandler": "^1.2.3",
"@types/lodash": "^4.14.202",
"@types/send": "^0.17.4",
"@types/serve-static": "^1.15.5",
"bun-types": "latest",
"dedent": "^1.5.3"
}
}