-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "microcms-richedit-processer",
"version": "1.2.0",
"description": "microCMSのリッチエディタから取得した値を加工したり、目次リストを作成します。",
"keywords": [
"microCMS",
"richedit",
"preprocesser"
],
"homepage": "https://github.com/dc7290/microcms-richedit-processer#readme",
"bugs": {
"url": "https://github.com/dc7290/next-export-optimize-images/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dc7290/microcms-richedit-processer.git"
},
"license": "MIT",
"author": "dc7290 <[email protected]>",
"sideEffects": false,
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"esm",
"lib"
],
"scripts": {
"clean:esm": "rm -rf ./esm",
"clean:lib": "rm -rf ./lib",
"prebuild": "run-p clean:*",
"build": "run-p build:*",
"build:cjs": "tsc --outDir lib",
"build:esm": "tsc --outDir esm --module esNext",
"lint": "eslint . --cache",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint-staged": "lint-staged",
"prepare": "husky install",
"semantic-release": "SKIP_BY_SEMANTIC_RELEASE=true semantic-release",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"cross-fetch": "^3.1.5",
"deepmerge": "^4.2.2",
"image-size": "^1.0.2",
"node-html-parser": "^6.1.4",
"ts-imgix": "^0.0.18"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/deepmerge": "2.2.0",
"@types/jest": "29.2.5",
"@types/node-fetch": "2.6.1",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"git-cz": "4.9.0",
"highlight.js": "11.7.0",
"husky": "8.0.3",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"semantic-release": "19.0.5",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
},
"peerDependencies": {
"highlight.js": "^11.7.0"
},
"peerDependenciesMeta": {
"highlight.js": {
"optional": true
}
},
"engines": {
"node": ">=v16.0.0"
}
}