-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "microcms-rich-editor-handler",
"version": "1.0.1",
"description": "microCMSのリッチエディタコンテンツを変換したりデータを抽出します。",
"keywords": [
"microcms",
"richeditor",
"rich",
"editor"
],
"homepage": "https://microcms-rich-editor-handler.vercel.app",
"bugs": {
"url": "https://github.com/microcmsio/microcms-rich-editor-handler/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microcmsio/microcms-rich-editor-handler.git"
},
"license": "MIT",
"author": "d-suke",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"cheerio": "^1.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.48.0",
"@tsconfig/strictest": "^2.0.5",
"@vitest/coverage-v8": "^2.1.8",
"shiki": "^1.24.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"shiki": "^1"
},
"peerDependenciesMeta": {
"shiki": {
"optional": true
}
},
"engines": {
"node": ">=18"
}
}