-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "shiki-hide-lines",
"version": "1.1.0",
"description": "A Shiki transformer that hides marked lines from rendered code blocks",
"type": "module",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./style.css": "./style.css"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"style.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TestFlowLabs/shiki-hide-lines.git"
},
"homepage": "https://github.com/TestFlowLabs/shiki-hide-lines#readme",
"bugs": {
"url": "https://github.com/TestFlowLabs/shiki-hide-lines/issues"
},
"author": "Yunus Emre Deligöz",
"keywords": [
"shiki",
"shiki-transformer",
"code-blocks",
"hide-lines",
"documentation"
],
"engines": {
"node": ">=20"
},
"peerDependencies": {
"shiki": ">=1.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@shikijs/types": "^3.22.0",
"jsdom": "^28.0.0",
"shiki": "^3.22.0",
"typescript": "^5.7.0",
"unbuild": "^3.5.0",
"vitest": "^3.0.0"
},
"scripts": {
"build": "unbuild",
"test": "vitest run",
"dev": "vitest watch",
"lint": "biome check",
"lint:fix": "biome check --fix"
}
}