-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "@vue-termui/syntax-highlight",
"version": "1.0.3",
"description": "Syntax highlight component for vue-termui.",
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"packageManager": "pnpm@7.12.2",
"scripts": {
"build": "tsup",
"play:dev": "pnpm run --filter './playground' dev",
"play:build": "pnpm run --filter './playground' build",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/vue-terminal/syntax-highlight.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/*.js",
"dist/*.mjs",
"dist/*.cjs",
"dist/*.d.ts"
],
"keywords": [
"vue-termui",
"code",
"syntax",
"component",
"syntax-highlight",
"vue"
],
"author": "webfansplz",
"license": "MIT",
"bugs": {
"url": "https://github.com/vue-terminal/syntax-highlight/issues"
},
"homepage": "https://github.com/vue-terminal/syntax-highlight#readme",
"peerDependencies": {
"@vue/runtime-core": "^3.2.41",
"vue-termui": "^0.0.19"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@vue/runtime-core": "^3.2.41",
"chalk": "^5.2.0",
"prettier": "^2.8.0",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vue": "^3.2.41",
"vue-termui": "0.0.17"
},
"dependencies": {
"shiki": "^0.11.1"
}
}