-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@remark-embedder/core",
"version": "0.0.0-semantically-released",
"publishConfig": {
"access": "public"
},
"description": "Remark plugin to convert URLs to embed code in markdown.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"remark",
"remark-plugin"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/remark-embedder/core"
},
"bugs": {
"url": "https://github.com/remark-embedder/core/issues"
},
"homepage": "https://github.com/remark-embedder/core#readme",
"files": [
"dist"
],
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "vitest",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.24.5",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"hast-util-from-parse5": "^8.0.1",
"parse5": "^7.1.2",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@vitest/coverage-v8": "^1.6.0",
"c8": "^9.1.0",
"kcd-scripts": "^15.0.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}