generated from florian-lefebvre/astro-integration-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "expressive-code-twoslash",
"version": "0.3.1",
"description": "Add Twoslash support to your Expressive Code TypeScript code blocks.",
"author": {
"email": "[email protected]",
"name": "Adam Matthiesen",
"url": "https://matthiesen.xyz"
},
"license": "MIT",
"keywords": [
"expressive-code",
"expressive-code-plugin",
"ec-plugin",
"twoslash"
],
"homepage": "https://twoslash.matthiesen.dev",
"repository": {
"type": "git",
"url": "https://github.com/MatthiesenXYZ/EC-Plugins",
"directory": "packages/twoslash"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build-js-module": "tsm --require=../../scripts/filter-warnings.cjs ./scripts/minify.ts",
"compile": "tsup ./src/index.ts --format esm --dts --sourcemap --clean",
"build": "pnpm build-js-module && pnpm compile",
"watch": "pnpm build --watch src"
},
"type": "module",
"dependencies": {
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-hast": "^13.2.0",
"twoslash": "^0.2.12"
},
"devDependencies": {
"@types/uglify-js": "^3.17.5",
"uglify-js": "^3.19.3"
},
"peerDependencies": {
"@expressive-code/core": "^0.38.3",
"expressive-code": "^0.38.3",
"typescript": "^5.5"
}
}