-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 872 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 872 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": "nextjs-css-agent-components",
"description": "A vanilla-CSS Next.js component library from the Internet Development Studio team, designed to be readable, copyable, and friendly to AI coding agents.",
"engines": {
"node": ">=18"
},
"license": "MIT",
"version": "2.0.2",
"scripts": {
"dev": "next -p 10000",
"build": "next build",
"start": "PORT=10000 next start",
"format": "prettier --write \"**/*.{tsx,ts,js,css,json,md}\"",
"format:check": "prettier --check \"**/*.{tsx,ts,js,css,json,md}\""
},
"dependencies": {
"d3": "^7.9.0",
"next": "^16.2.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}