forked from jlkiri/gatsby-remark-shiki
-
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.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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": "@libsrcdev/gatsby-remark-shiki",
"version": "0.3.4",
"description": "This plugin uses shiki to add code highlighting to pages that are built with gatsby-transformer-remark.",
"keywords": [
"gatsby",
"gatsby-plugin",
"shiki",
"remark"
],
"homepage": "https://github.com/libsrcdev/gatsby-remark-shiki",
"bugs": {
"url": "https://github.com/libsrcdev/gatsby-remark-shiki/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libsrcdev/gatsby-remark-shiki.git"
},
"license": "MIT",
"author": "@libsrcdev",
"contributors": [
{
"name": "Kirill Vasiltsov",
"url": "@jlkiri"
}
],
"type": "commonjs",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "nodemon --watch src --ext js,ts,mjs,cjs,json --exec \"tsup src/index.ts --format esm,cjs --dts --silent\"",
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint . --ext .ts",
"test": "vitest",
"prepare": "npm run build"
},
"dependencies": {
"shiki": "^3.15.0",
"shiki-languages": "^0.2.7",
"shiki-themes": "^0.2.7",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@swc/core": "^1.15.3",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"nodemon": "^3.1.11",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"typings": "dist/index.d.ts",
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}