-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.01 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.01 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
{
"name": "simshadows-pages",
"author": "simshadows <contact@simshadows.com>",
"version": "0.0.1",
"license": "CC-BY-SA-4.0",
"packageManager": "yarn@4.7.0",
"type": "module",
"scripts": {
"dev": "astro dev --port 8000",
"start": "astro dev --port 8000",
"build": "astro check && tsc --noEmit && astro build",
"test": "jest",
"typecheck": "astro check && tsc --noEmit",
"buildserve": "astro check && tsc --noEmit && astro build && astro preview --port 3000",
"serve": "astro preview --port 8000",
"preview": "astro preview --port 8000",
"astro": "astro",
"pbuild": "podman build -t simshadows/website-claude-code-sandbox .claude/container-sandbox",
"prun": "yarn pstart",
"pstart": "yarn pclean; podman run --name website-claude-code-sandbox --hostname website-claude-sandbox --mount type=volume,src=website-claude-code-sandbox-usersetting,dst=/home/node/.claude --mount type=bind,src=.,dst=/mnt/website -dit simshadows/website-claude-code-sandbox",
"pterm": "podman exec -it website-claude-code-sandbox bash",
"pstop": "podman stop website-claude-code-sandbox",
"pclean": "yarn pstop; podman rm website-claude-code-sandbox"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "4.2.0",
"@astrojs/preact": "4.0.5",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "3.2.1",
"@astrojs/ts-plugin": "1.10.4",
"@babel/core": "^7.26.10",
"@fontsource/roboto": "^5.2.5",
"@types/hast": "3.0.3",
"@types/katex": "^0.16.7",
"@types/node": "^22.13.10",
"astro": "5.5.2",
"dayjs": "^1.11.13",
"hast-util-from-html": "2.0.3",
"hast-util-to-text": "^4.0.2",
"katex": "^0.16.21",
"normalize.css": "^8.0.1",
"preact": "^10.26.4",
"sharp": "^0.33.5",
"typescript": "^5.8.2",
"unist-util-visit-parents": "^6.0.0",
"vite": "^6.2.2"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/jest": "^30.0.0",
"jest": "^30.0.5",
"jest-util": "^30.0.5",
"ts-jest": "^29.4.1"
}
}