-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "eloc",
"version": "1.3.2",
"description": "1MB cli for markdown presentation authoring",
"repository": "amio/eloc",
"license": "MIT",
"bin": "dist/index.js",
"scripts": {
"bootstrap": "npm run build -w markdown-deck",
"dev": "npm run build -- --watch",
"prebuild": "rm -rf dist",
"build": "esbuild --bundle src/index.ts --outdir=dist --platform=node --minify",
"postbuild": "npm run bootstrap && cp src/editing.js dist",
"now-build": "npm run bootstrap && npm run build && node dist/index.js build deck.md -t 'The eloquent cli'",
"prepack": "npm run build"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/micromatch": "^4.0.1",
"@types/mri": "^1.1.0",
"@types/node": "^16.18.11",
"@types/serve-handler": "^6.1.0",
"@vercel/ncc": "^0.38.1",
"esbuild": "^0.19.1",
"fs-extra": "^11.1.0",
"globby": "^14.0.0",
"kleur": "^4.1.4",
"markdown-deck": "^1.7.2",
"micri": "^4.3.0",
"micro-fork": "^3.0.0",
"micromatch": "^4.0.2",
"mri": "^1.1.4",
"open": "^8.0.2",
"serve-handler": "^6.1.3",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16"
}
}