-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "dna-by-humaan",
"version": "0.1.0",
"private": true,
"description": "DNA by Humaan — one doctor install: 103 stem packs, rules, detection, portfolio memory, 1045-pack knowledge marketplace, DNA Lab at /labs, runtime observer, feature factory, and AI repair for TypeScript squads",
"author": "Humaan by Superlite",
"license": "MIT",
"homepage": "https://dna.humaan.app",
"repository": {
"type": "git",
"url": "git+https://github.com/superhumaan/DNA.git"
},
"bugs": {
"url": "https://github.com/superhumaan/DNA/issues"
},
"keywords": [
"dna",
"humaan",
"project-intelligence",
"ai-context",
"cursor",
"copilot",
"claude",
"runtime-observer",
"dna-lab",
"observability",
"typescript",
"monorepo",
"knowledge-packs",
"marketplace",
"compliance",
"gdpr",
"hipaa",
"healthcare",
"fhir",
"github-automation",
"portfolio-install",
"feature-factory"
],
"scripts": {
"dev": "NODE_OPTIONS='--import @superhumaan/dna-by-humaan/runtime/preload' pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"test": "vitest run",
"test:watch": "vitest",
"test:report": "vitest run --reporter=json --outputFile=.dna-reports/test-results.json",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"test:load:lab": "node scripts/lab-load-test.mjs --users 200 --polls 5 --events 2000 --after-only --max-p95 1500 --min-throughput 500 --json .dna-reports/load-test.json",
"health:report": "node scripts/health-report.mjs",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"typecheck": "pnpm -r run typecheck",
"dna": "node packages/dna-cli/dist/index.js",
"dna:link": "pnpm build && cd packages/dna-cli && pnpm link --global",
"dna:setup": "bash scripts/team-setup.sh",
"dna:init:examples": "node packages/dna-cli/dist/index.js init -y --cwd apps/examples/react-vite-app && node packages/dna-cli/dist/index.js init -y --cwd apps/examples/node-express-app",
"publish:npm": "bash scripts/publish-npm.sh",
"deprecate:internal-npm": "bash scripts/deprecate-internal-npm.sh",
"unpublish:internal-npm": "bash scripts/unpublish-internal-npm.sh",
"gdpr:ingest": "node scripts/ingest-gdpr-documents.mjs",
"gdpr:scrub": "node scripts/scrub-gdpr-branding.mjs",
"wiki:init": "[ -d .local-wiki ] || npx create-docusaurus@latest .local-wiki classic --typescript --package-manager npm",
"wiki:sync": "node scripts/sync-local-wiki.mjs",
"wiki:kill": "node scripts/wiki-refresh.mjs --kill-only",
"wiki:refresh": "node scripts/wiki-refresh.mjs",
"wiki:dev": "pnpm run wiki:refresh",
"wiki:build": "pnpm run wiki:sync && npm run build --prefix .local-wiki",
"sponsors:sync": "node scripts/sync-sponsors.mjs",
"health:sync": "node scripts/sync-health-report.mjs",
"marketplace:sync": "node scripts/sync-marketplace-catalog.mjs",
"intelligence:sync": "pnpm --filter @superhumaan/dna-core build && node scripts/sync-intelligence-commands.mjs",
"test:coverage": "vitest run --coverage",
"docker:build": "docker build -t dna-app:local .",
"docker:verify": "docker build -t dna-app:local . && docker run --rm dna-app:local node -e \"console.log('ok')\""
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"esbuild": "0.28.1",
"find-my-way": "9.7.0",
"fast-uri": "4.1.1",
"body-parser": "1.20.6",
"postcss": "8.5.23",
"brace-expansion": "5.0.8"
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.61.1",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@superhumaan/dna-by-humaan": "^0.6.20"
}
}