forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 996 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 996 Bytes
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
{
"name": "@typespec/astro-utils",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./sidebar": "./src/sidebar/index.ts",
"./shiki": "./src/shiki/index.ts",
"./components/*": "./src/components/*",
"./utils/*": "./src/utils/*.ts",
"./css/*": "./src/css/*",
"./expressive-code/*": "./dist/expressive-code/*.js"
},
"files": [
"src",
"index.ts"
],
"scripts": {
"build": "astro check && tsc -p ./tsconfig.build.json",
"watch": "tsc -p ./tsconfig.build.json --watch"
},
"devDependencies": {
"@types/react": "~18.3.11",
"astro": "^5.4.2"
},
"peerDependencies": {
"astro": "^5.4.2"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/starlight": "^0.32.2",
"@expressive-code/core": "^0.40.2",
"@typespec/playground": "workspace:~",
"astro-expressive-code": "^0.40.2",
"pathe": "^2.0.3",
"react": "~18.3.1",
"typescript": "~5.8.2"
}
}