-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "svelte-preprocess-highlight",
"version": "0.1.0",
"license": "MIT",
"description": "Svelte preprocessor that syntax highlights code using highlight.js",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"prepack": "tsc",
"format": "prettier --write ."
},
"dependencies": {
"highlight.js": "^11.8.0",
"magic-string": "^0.30.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1"
},
"devDependencies": {
"@types/prettier": "^2.7.3",
"svelte": "^4.0.1",
"typescript": "^5.1.6",
"vitest": "^0.32.2"
},
"prettier": {
"printWidth": 100
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-preprocess-highlight"
},
"homepage": "https://github.com/metonym/svelte-preprocess-highlight",
"bugs": "https://github.com/metonym/svelte-preprocess-highlight/issues",
"keywords": [
"svelte",
"svelte preprocessor",
"highlight.js",
"prettier"
],
"files": [
"dist"
]
}