-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "root",
"private": true,
"workspaces": [
"example",
"packages/*"
],
"scripts": {
"build": "pnpm build:dts && pnpm build:mehc && pnpm build:muhc && pnpm build:deepmark",
"build:dts": "tsc --build .",
"build:mehc": "pnpm -F micromark-extension-html-comment run build",
"build:muhc": "pnpm -F mdast-util-html-comment run build",
"build:deepmark": "pnpm -F deepmark run build",
"format": "prettier --write .",
"lint": "prettier --check ./packages",
"publish:mehc": "pnpm publish -F micromark-extension-html-comment --access public",
"publish:muhc": "pnpm publish -F mdast-util-html-comment --access public",
"publish:deepmark": "pnpm publish -F deepmark --access public"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.11.19",
"del-cli": "^5.0.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.5",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"nock": "^13.3.0",
"prettier": "^2.8.3",
"typescript": "5.0.0-beta",
"vite": "^4.1.1",
"vitest": "^0.28.4"
},
"type": "module",
"packageManager": "[email protected]"
}