-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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": "remark-custom-container",
"version": "1.3.1",
"description": "remark parser plugin for custom directive in markdown",
"author": "koka831",
"license": "MIT",
"type": "module",
"export": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:koka831/remark-custom-container.git"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:commonjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint src"
},
"files": [
"dist"
],
"keywords": [
"markdown",
"remark",
"unified"
],
"dependencies": {
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/unist": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.0",
"remark-gfm": "^3.0.0",
"remark-rehype": "^10.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"unified": "^10.1.0",
"vfile": "^5.3.6"
}
}