-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "milkdown-plugin-shiki",
"version": "0.1.1",
"description": "milkdown-plugin-shiki",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"prepare": "husky install",
"dev": "vite",
"tsc": "tsc --noEmit",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songhn233/milkdown-plugin-shiki"
},
"bugs": {
"url": "https://github.com/songhn233/milkdown-plugin-shiki/issues"
},
"homepage": "https://github.com/songhn233/milkdown-plugin-shiki",
"keywords": [
"milkdown",
"milkdown plugin",
"shiki"
],
"author": "songhn",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@milkdown/plugin-slash": "^4.11.1",
"@milkdown/preset-gfm": "^4.11.1",
"@milkdown/theme-nord": "^4.11.1",
"@types/node": "^16.7.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"vite": "^2.5.3"
},
"dependencies": {
"@milkdown/core": "*",
"@milkdown/preset-commonmark": "^4.11.1",
"@types/refractor": "^3.0.0",
"refractor": "^3.3.1",
"shiki": "^0.9.10"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
]
}
}