-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "@akshat1/patrika",
"version": "0.6.1",
"description": "Patrika is a static site generator. It reads markdown files and generates a static website using a user supplied `renderToString(ContentItem, Patrika) => Promise<string | string[]>` function. Patrika is minimal and framework agnostic, meant to be used with your favorite front-end framework.",
"main": "lib/index.js",
"repository": "git@github.com:akshat1/patrika.git",
"author": "akshat1 <akshat.sh@gmail.com>",
"license": "UNLICENSED",
"type": "module",
"homepage": "https://www.akshatmedia.com/patrika",
"publishConfig": {
"registry": "https://warehouse.akshatmedia.com/"
},
"bin": {
"patrika": "./bin/patrika.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"clean": "rm -rf lib/ coverage/",
"docs": "typedoc",
"prepare": "yarn run clean; yarn run build",
"lint": "eslint . --ext .ts",
"test": "node --test lib/**/*.test.js"
},
"dependencies": {
"@akshat1/js-logger": "^2.0.2",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"front-matter": "^4.0.2",
"glob": "^11.0.0",
"less": "^4.2.0",
"marked": "^12.0.0",
"parseurl": "^1.3.3",
"picodb": "^1.0.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}