-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "vue3-notion",
"version": "0.1.46",
"description": "Vue 3 Unofficial Notion Renderer",
"homepage": "https://vue3-notion.vercel.app/",
"repository": "github:zernonia/vue3-notion",
"type": "module",
"main": "./dist/vue3-notion.umd.cjs",
"module": "./dist/vue3-notion.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue3-notion.js",
"require": "./dist/vue3-notion.umd.cjs"
},
"./nuxt": {
"require": "./nuxt/index.ts",
"import": "./nuxt/index.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist",
"nuxt"
],
"keywords": [
"vue",
"vue3",
"nuxt",
"nuxt3",
"notion"
],
"license": "MIT",
"scripts": {
"dev": "vite serve playground",
"dev:build": "vite build playground",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"version": " git add -A src",
"postversion": "git push && git push --tags",
"deploy": "npm run build && npm version patch && npm publish"
},
"dependencies": {
"katex": "^0.15.1",
"prismjs": "^1.25.0",
"vue": "^3.2.26"
},
"devDependencies": {
"@nuxt/kit": "^3.13.2",
"@types/katex": "^0.11.1",
"@types/node": "^20.1.1",
"@types/prismjs": "^1.16.6",
"@vitejs/plugin-vue": "^4.2.1",
"@vueuse/core": "^8.7.5",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vue-router": "4",
"vue-tsc": "^2.1.6"
},
"peerDependencies": {
"katex": "^0.15.1",
"prismjs": "^1.25.0",
"vue": "^3.2.20"
},
"packageManager": "[email protected]"
}