-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "postdoc",
"type": "module",
"version": "0.3.0-preview",
"license": "MIT",
"description": "Create delightful documentation websites with ease.",
"bin": {
"postdoc": "./bin/postdoc.js"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
"./dom": "./client/dom/index.js",
"./client": "./client/index.js",
"./page": "./client/page/index.js"
},
"scripts": {
"test:e2e": "nightwatch",
"test:unit": "nightwatch --env unittests",
"lint": "eslint ."
},
"files": [
"bin",
"client",
"extra",
"lib",
"LICENSE",
"README.md",
"package.json",
"package-lock.json"
],
"devDependencies": {
"@eslint/js": "^8.40.0",
"@stylistic/eslint-plugin": "^1.5.1",
"@types/marked": "^4.0.8",
"@types/node": "^20.8.9",
"eslint": "^8.40.0",
"globals": "^13.24.0",
"mock-fs": "^5.2.0",
"mock-require": "^3.0.3",
"sinon": "^15.0.1",
"tree-kill": "^1.2.2"
},
"dependencies": {
"@halo-lab/iterable": "^0.0.1",
"@halo-lab/stream": "^0.0.1",
"@pineview/ejs": "0.3.0-preview",
"anymatch": "^3.1.3",
"arcsecond": "^5.0.0",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"deepmerge": "^4.2.2",
"dotenv": "^16.3.1",
"dox": "^1.0.0",
"figlet": "^1.7.0",
"front-matter": "^4.0.2",
"inquirer": "^9.2.14",
"jsdom": "^24.0.0",
"jsonwebtoken": "^9.0.2",
"marked": "^10.0.0",
"marked-gfm-heading-id": "^3.1.3",
"marked-highlight": "^2.0.7",
"nightwatch": "^3.4.1",
"node-machine-id": "^1.1.12",
"open": "^10.0.1",
"pipe-ts": "^0.0.9",
"progress": "^2.0.3",
"shiki": "^0.14.5",
"vite": "^5.0.11",
"vite-plugin-pwa": "^0.16.7"
}
}