-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "@shiki/block",
"type": "module",
"version": "2.0.2",
"packageManager": "pnpm@9.15.9",
"description": "A Shiki based Code Block Component ✨",
"author": "Selemondev",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/selemondev/shiki-code-block.git"
},
"bugs": {
"url": "https://github.com/selemondev/shiki-code-block/issues"
},
"keywords": [
"vue3",
"vue3-component",
"vue-code-block",
"typescript",
"shiki",
"shiki-code-block",
"code-block"
],
"scripts": {
"build:packages": "pnpm -r run build",
"biome": "biome check --write",
"test": "vitest",
"coverage": "vitest run --coverage",
"generate:release": "pnpx changelogen@latest --release && git push --follow-tags",
"bump:version": "pnpx changelogen@latest --bump"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^7.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.3",
"typescript": "^5.9.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4"
},
"workspaces": [
"packages/*"
]
}