-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "termcast",
"version": "0.1.0",
"private": true,
"description": "Terminal demos as animated SVG. Write a tape, get a README-ready demo.",
"license": "MIT",
"homepage": "https://termcast.xyz",
"repository": {
"type": "git",
"url": "git+https://github.com/bbjbc/termcast.git"
},
"bugs": {
"url": "https://github.com/bbjbc/termcast/issues"
},
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">=20.9"
},
"scripts": {
"dev": "next dev --turbopack -H 0.0.0.0 -p 3210",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"next": "16.3.3",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.3",
"typescript": "^5",
"vitest": "^4.1.11"
}
}