-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@thewebforge/astro-code-blocks",
"description": "Beautiful code blocks for your astro site",
"version": "0.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "C\u00e9dric Bontems <[email protected]> (https://thewebforge.dev/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thewebforge/astro-code-blocks.git"
},
"keywords": [
"astro-integration",
"astro-component",
"code-blocks"
],
"bugs": {
"url": "https://github.com/thewebforge/astro-code-blocks/issues"
},
"homepage": "https://github.com/thewebforge/astro-code-blocks#readme",
"exports": {
".": "./dist/index.js",
"./components": "./components/index.js",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"components",
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "rm -rf dist && tsc --watch",
"test": "mocha --timeout 20000"
},
"dependencies": {
"@types/chroma-js": "2.4.0",
"@types/html-escaper": "3.0.0",
"@types/mdast": "3.0.11",
"astro": "2.7.1",
"astro-auto-import": "0.3.0",
"chroma-js": "2.4.2",
"html-escaper": "3.0.3",
"mdast-util-mdx-jsx": "2.1.4",
"parse-numeric-range": "1.3.0",
"unified": "10.1.2",
"unist-util-visit": "4.1.2",
"zod": "3.21.4"
},
"devDependencies": {
"chai": "4.3.7",
"mocha": "10.2.0",
"prettier": "2.8.8",
"prettier-plugin-astro": "0.10.0",
"typescript": "5.1.5"
},
"peerDependencies": {
"astro": ">=2.0.0",
"chroma-js": "^2.4.2",
"sass": "^1.63.4"
}
}