-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "@hyperbook/fs",
"version": "0.25.0",
"author": "Mike Barkmin",
"homepage": "https://github.com/openpatch/hyperbook#readme",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./index.css": "./dist/index.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/hyperbook.git",
"directory": "packages/fs"
},
"bugs": {
"url": "https://github.com/openpatch/hyperbook/issues"
},
"scripts": {
"version": "pnpm build",
"lint": "tsc --noEmit",
"test": "vitest",
"build": "rimraf dist && pnpm build:pkg && pnpm build:types",
"build:pkg": "node ../../scripts/build.mjs",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
},
"bundle": [
"handlebars"
],
"dependencies": {
"chalk": "5.4.1",
"find-up": "^7.0.0",
"gray-matter": "4.0.3",
"mdast-util-directive": "^3.1.0",
"mdast-util-from-markdown": "^2.0.2",
"micromark-extension-directive": "^4.0.0",
"mime-types": "^3.0.2",
"unist-util-visit": "^5.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@hyperbook/types": "workspace:*",
"@types/mdast": "^4.0.4",
"@types/mime-types": "^3.0.1",
"handlebars": "^4.7.8",
"ms": "^2.1.3",
"vitest": "^4.0.18"
}
}