-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
73
{
"type": "module",
"private": false,
"name": "vuejs-code-block",
"version": "1.0.1",
"description": "A Vue 3 component of unstyled UI components to build powerful code blocks.",
"author": {
"name": "Ebraheem Alhetari",
"email": "[email protected]",
"url": "https://github.com/hetari"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hetari/vuejs-code-block.git"
},
"keywords": [
"code-block",
"code-blocks",
"snippets",
"syntax-highlighting",
"unstyled",
"ui component",
"vue3",
"typescript",
"javascript"
],
"homepage": "https://github.com/hetari/vuejs-code-block",
"bugs": {
"url": "https://github.com/hetari/vuejs-code-block/issues"
},
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"style": "dist/style.css",
"files": [
"dist/",
"README.md",
"src/types/*.ts"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@emotion/css": "^11.13.4",
"@theme-ui/prism": "^0.16.2",
"@types/node": "^22.7.4",
"@types/prismjs": "^1.26.4",
"@vitejs/plugin-vue": "^5.1.2",
"prismjs": "^1.29.0",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-libcss": "^1.1.1",
"vite-svg-loader": "^5.1.0",
"vitepress": "^1.3.4",
"vue-tsc": "^2.0.29"
},
"publishConfig": {
"access": "public"
}
}