-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
51
52
53
54
55
56
57
{
"name": "markdoc-traverse",
"version": "1.1.1",
"description": "A simple and tiny traversal library for MarkDoc AST",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"markdoc",
"markdoc-ast",
"markdoc-traversal",
"ast",
"syntax-tree",
"abstract-syntax-tree",
"markdoc-parser",
"markdown",
"content-authoring",
"ast-visitor",
"tree-walker",
"markdown-traversal",
"document-processing",
"content-transformation",
"markup-language",
"custom-syntax",
"static-site-generator",
"ast-manipulation",
"content-automation",
"markdoc-extension"
],
"repository": {
"url": "https://github.com/Viijay-Kr/markdoc-traverse",
"type": "public"
},
"scripts": {
"test": "bun run build && vitest",
"build": "tsup src/index.ts --dts",
"release": "bun run build && changeset publish",
"format:check": "prettier src/**/*.ts --check",
"format:write": "prettier src/**/*.ts --write"
},
"author": "Viijay-Kr",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@markdoc/markdoc": "^0.2.2",
"changesets": "^1.0.2",
"rollup": "^3.19.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"tsup": "^8.2.4",
"typescript": "^5.0.2",
"vitest": "^0.29.3"
}
}