-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.98 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
{
"name": "milkdown-plugin-placeholder",
"version": "0.2.1",
"description": "milkdown-plugin-placeholder",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"dev": "vite",
"css": "tailwindcss -i ./app/input.css -o ./app/output.css --watch",
"tsc": "tsc --noEmit",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/HexMox/milkdown-plugin-placeholder"
},
"bugs": {
"url": "https://github.com/HexMox/milkdown-plugin-placeholder/issues"
},
"homepage": "https://github.com/HexMox/milkdown-plugin-placeholder",
"keywords": [
"milkdown",
"milkdown plugin",
"placeholder"
],
"author": "moxhe",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@milkdown/preset-commonmark": "^7",
"@milkdown/preset-gfm": "^7",
"@milkdown/theme-nord": "^7",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^16.7.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.3.1",
"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",
"postcss-import": "^15.1.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.3.2",
"tailwind-nord": "^1.3.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.4.2",
"vite": "^2.5.3"
},
"dependencies": {
"@milkdown/core": "^7",
"@milkdown/ctx": "^7",
"@milkdown/prose": "^7",
"@milkdown/transformer": "^7"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
]
}
}