-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@markwhen/mw",
"version": "1.2.4",
"description": "CLI for markwhen documents",
"type": "module",
"bin": {
"mw": "lib/index.js"
},
"scripts": {
"build": "tsc && node build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc-watch",
"link:parser": "yalc add @markwhen/parser && yalc link @markwhen/parser && npm install",
"unlink:parser": "yalc remove @markwhen/parser && npm install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/luxon": "^3.3.2",
"@types/node": "^18.15.5",
"@types/ws": "^8.5.4",
"@types/yargs": "^17.0.23",
"esbuild": "^0.17.12",
"tsc-watch": "^6.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@markwhen/calendar": "^1.3.4",
"@markwhen/parser": "^0.10.14",
"@markwhen/resume": "^1.1.0",
"@markwhen/timeline": "^1.3.0",
"@nuxt/devalue": "^2.0.2",
"express": "^4.18.2",
"ical.js": "^1.5.0",
"node-html-parser": "^6.1.10",
"ws": "^8.14.2",
"yargs": "^17.7.2"
},
"files": [
"lib/**/*",
"view-templates/**/*"
]
}