-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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": "@typlog/shiki-transformers",
"type": "module",
"version": "1.0.0",
"description": "Transformers (used by Typlog) for Shiki",
"author": "Hsiaoming Yang <me@lepture.com>",
"license": "MIT",
"homepage": "https://github.com/typlog/shiki-transformers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/typlog/shiki-transformers.git"
},
"bugs": "https://github.com/typlog/shiki-transformers/issues",
"keywords": [
"shiki"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"shiki": "^1.6.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
}
}