-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
60
61
62
63
64
65
66
{
"name": "remark-dramark",
"version": "0.1.0",
"description": "Remark plugin for DraMark - Drama Markdown language",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/dramark-md/dramark.git"
},
"bugs": {
"url": "https://github.com/dramark-md/dramark/issues"
},
"homepage": "https://github.com/dramark-md/dramark#readme",
"workspaces": [
"apps/*",
"docs"
],
"scripts": {
"build": "tsc",
"build:vscode": "bun --cwd apps/vscode-extension run build",
"build:vscode:vsix": "bun --cwd apps/vscode-extension run package:vsix",
"build:docs": "bun --cwd docs run build",
"dev:docs": "bun --cwd docs run dev",
"test": "vitest",
"test:run": "vitest run"
},
"license": "Apache-2.0",
"keywords": [
"remark",
"dramark",
"markdown",
"drama",
"theater",
"musical"
],
"dependencies": {
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"micromark-util-types": "^2.0.0",
"serialize-javascript": "^7.0.0",
"unified": "^11.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^20.0.0",
"@types/serialize-javascript": "^5.0.4",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"typescript": "^5.3.0",
"vfile": "^6.0.3",
"vitest": "^1.0.0"
}
}