Skip to content

Commit 5c91fc8

Browse files
committed
feat: init
1 parent d27fe4e commit 5c91fc8

19 files changed

+807
-1154
lines changed

eslint.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ import antfu from '@antfu/eslint-config'
22

33
export default antfu({
44
formatters: true,
5-
ignores: ['./pnpm-lock.yaml'],
5+
vue: true,
6+
ignores: ['./pnpm-lock.yaml', 'playground'],
67
})

package.json

+14
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,28 @@
3939
"release": "bumpp",
4040
"prepare": "husky"
4141
},
42+
"peerDependencies": {
43+
"vue": "3"
44+
},
45+
"dependencies": {
46+
"mdast-util-from-markdown": "^2.0.2",
47+
"mdast-util-to-vnode": "^0.3.0"
48+
},
4249
"devDependencies": {
4350
"@antfu/eslint-config": "^3.14.0",
4451
"@commitlint/cli": "^19.6.1",
4552
"@commitlint/config-conventional": "^19.6.0",
4653
"@commitlint/cz-commitlint": "^19.6.1",
4754
"@types/node": "22",
55+
"@vitejs/plugin-vue": "^5.2.1",
4856
"bumpp": "^9.10.2",
4957
"commitizen": "^4.3.1",
5058
"eslint": "^9.18.0",
5159
"eslint-plugin-format": "^1.0.1",
5260
"husky": "^9.1.7",
5361
"inquirer": "^12.3.3",
5462
"lint-staged": "^15.4.3",
63+
"sass-embedded": "^1.85.1",
5564
"typescript": "^5.7.3",
5665
"unplugin-external": "0.1.0-beta.3",
5766
"vite": "^6.1.1",
@@ -67,6 +76,11 @@
6776
"@commitlint/config-conventional"
6877
]
6978
},
79+
"pnpm": {
80+
"onlyBuiltDependencies": [
81+
"esbuild"
82+
]
83+
},
7084
"lint-staged": {
7185
"*": "eslint --fix"
7286
}

playground/.gitignore

-24
This file was deleted.

playground/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
76
<title>Vite + Vue + TS</title>
87
</head>

0 commit comments

Comments
 (0)