-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.69 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.69 KB
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
74
{
"name": "@codemonster-ru/vue-codeblock",
"version": "1.0.0",
"description": "Standalone Vue code block component with syntax highlighting and light/dark theming.",
"license": "MIT",
"author": "Kirill Kolesnikov",
"keywords": [
"vue",
"vue3",
"code-block",
"syntax-highlighting",
"code",
"documentation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codemonster-ru/vue-codeblock.git"
},
"homepage": "https://github.com/codemonster-ru/vue-codeblock#readme",
"bugs": {
"url": "https://github.com/codemonster-ru/vue-codeblock/issues"
},
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/index.css",
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.umd.cjs"
}
},
"./style.css": "./dist/index.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --write .",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"@types/node": "^24.3.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"sass": "^1.77.8",
"typescript": "^5.5.3",
"vite": "^7.1.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"vue": "^3.5.21",
"vue-tsc": "^3.0.7"
}
}