-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.18 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
{
"name": "nexusforge",
"version": "0.1.0",
"private": false,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev -H 0.0.0.0 --turbopack",
"start": "next start -H 0.0.0.0 -p ${PORT:-3000}",
"build": "BUILD_DIR=.next-build next build",
"build:local": "BUILD_DIR=.next-build next build",
"lint": "bunx biome lint --write && bunx tsc --noEmit",
"format": "bunx biome format --write",
"test": "bun test",
"publish:cli": "npm publish --access public --workspace @nexusforge/cli",
"publish:scanner": "npm publish --access public --workspace @nexusforge/scanner",
"publish:healer": "npm publish --access public --workspace @nexusforge/healer",
"publish:sdk": "npm publish --access public --workspace @nexusforge/sdk",
"publish:testgen": "npm publish --access public --workspace @nexusforge/testgen",
"publish:deployer": "npm publish --access public --workspace @nexusforge/deployer",
"publish:guardian": "npm publish --access public --workspace @nexusforge/guardian",
"publish:mcp": "npm publish --access public --workspace @nexusforge/mcp",
"publish:all": "npm run publish:cli && npm run publish:scanner && npm run publish:healer && npm run publish:sdk && npm run publish:testgen && npm run publish:deployer && npm run publish:guardian && npm run publish:mcp",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/postcss": "^4.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.7.0",
"next": "^16.2.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"bun-types": "^1.3.14",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
}
}