-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 978 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 978 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
{
"name": "srcl",
"description": "SRCL is an open-source React component and style repository that helps you build web applications, desktop applications, and static websites with terminal aesthetics.",
"engines": {
"node": ">=18"
},
"license": "MIT",
"version": "2.0.0",
"scripts": {
"dev": "next -p 10000",
"build": "next build",
"start": "PORT=10000 next start",
"lint": "next lint",
"test": "vitest run && node scripts/test_python.js",
"test:js": "vitest run",
"test:python": "node scripts/test_python.js",
"cli:typescript": "tsx scripts/cli/templates/template.ts",
"cli:python": "python3 scripts/python/templates/template.py"
},
"dependencies": {
"next": "16.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}