forked from janniks/vue-notion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "vue-notion",
"version": "2.0.6",
"description": "A Vue renderer for Notion pages",
"type": "module",
"main": "index.js",
"scripts": {
"check:lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"check:format": "prettier --check .",
"fix:lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"fix:format": "prettier --write ."
},
"dependencies": {
"defu": "^6.1.2"
},
"devDependencies": {
"@janniks/vue3-katex": "^0.6.0-rc.5.1",
"@rushstack/eslint-patch": "^1.5.1",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/cli": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.53.0",
"minimist": "^1.2.8",
"prettier": "^3.1.0",
"vite": "^4.2.1",
"vue": "^3.2.47"
},
"peerDependencies": {
"@janniks/vue3-katex": "^0.6.0-rc.5.1",
"vue": "^3.2.45"
}
}