forked from janniks/vue-notion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "vue-notion",
"version": "3.0.0-beta.1",
"description": "A Vue renderer for Notion pages",
"repository": "github:janniks/vue-notion",
"type": "module",
"main": "./dist/vue-notion.umd.cjs",
"module": "./dist/vue-notion.js",
"files": [
"dist/",
"src/**/*.css",
"nuxt/"
],
"scripts": {
"build": "vite build",
"clean": "rm -rf node_modules dist example/node_modules example/dist example/.nuxt",
"example:generate": "npm run example:install && cd example && npm run build && npm run generate",
"example:install": "npm pack && cd example && npm install && npm install ../*.tgz",
"example": "npm run example:generate && cd example && npm start",
"postpublish": "echo \"\\033[31m !!! Now, manually run: ./scripts/postpublish.sh !!! \\033[00m\"",
"prepack": "npm run build",
"release:patch": "npm version patch -m 'Release %s' && npm publish",
"release:minor": "npm version minor -m 'Release %s' && npm publish",
"serve": "vue-cli-service serve dev/serve.js"
},
"dependencies": {
"defu": "^6.1.2"
},
"devDependencies": {
"@janniks/vue3-katex": "^0.6.0-rc.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",
"minimist": "^1.2.8",
"vite": "^4.2.1",
"vue": "^3.2.47"
},
"peerDependencies": {
"@janniks/vue3-katex": "^0.6.0-rc.5.1",
"vue": "^3.2.45"
}
}