-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 786 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 786 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
{
"name": "@software-mansion/ai",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "prettier --check . && astro check && bun links --check",
"dev": "astro dev",
"lint": "prettier --write . && astro check && bun links",
"links": "bun run scripts/links.ts",
"preview": "astro preview",
"start": "astro dev"
},
"dependencies": {
"@astrojs/starlight": "^0.38.2",
"@std/csv": "npm:@jsr/std__csv",
"astro": "^6.1.3",
"sharp": "^0.34.5",
"starlight-llms-txt": "^0.8.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@types/bun": "^1.3.11",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3"
}
}