-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
67
{
"name": "remark-editorial-elements",
"version": "1.0.0",
"description": "remark extension to add `ins` and `del` directives via remark-directive",
"keywords": [
"remark",
"remark-plugin",
"remark-directive",
"editing"
],
"homepage": "https://github.com/shivjm/remark-extensions",
"bugs": {
"url": "https://github.com/shivjm/remark-extensions/issues"
},
"license": "ISC",
"author": "Shiv Jha-Mathur",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/shivjm/remark-extensions.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:clean": "rimraf lib && npm run build",
"lint": "eslint src/**/*.ts --config ../../eslint.config.mjs",
"test": "node --import tsx --test tests/index.ts",
"prepublish": "npm run build"
},
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/hast": "^3.0.4",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"hast": "^1.0.0",
"micromark-extension-directive": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"tsx": "^4.20.5",
"typescript": "^4.4.4",
"typescript-eslint": "^8.44.1"
},
"engines": {
"node": ">=18"
},
"type": "module",
"publishConfig": {
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
},
"files": [
"lib/"
],
"peerDependencies": {
"remark-directive": "^4.0.0"
}
}