-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "prism-highlight-lines-plugin",
"version": "0.1.2",
"description": "A Prism.js plugin for highlighting code lines with annotations - supports multiple highlight types (highlight, add, remove) with flexible range syntax",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.min.js",
"type": "module",
"files": [
"dist",
"src/style.css"
],
"scripts": {
"build": "rollup -c",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicodevs/prism-highlight-lines-plugin.git"
},
"bugs": {
"url": "https://github.com/nicodevs/prism-highlight-lines-plugin/issues"
},
"homepage": "https://github.com/nicodevs/prism-highlight-lines-plugin#readme",
"keywords": [
"prism",
"prismjs",
"syntax-highlighting",
"line-highlight",
"code-highlight",
"plugin",
"syntax",
"highlight",
"annotation",
"diff"
],
"author": "Nico Devs <hi@nicodevs.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"prismjs": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@vitest/ui": "^2.1.8",
"happy-dom": "^15.11.7",
"rollup": "^4.53.4",
"vitest": "^2.1.8"
}
}