-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.58 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.58 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
{
"name": "@understand-quickly/registry",
"version": "0.1.0",
"private": true,
"description": "Public registry of code-knowledge graphs for AI agents.",
"author": "Alex Macdonald-Smith <Alex.Mac@LoopTech.AI>",
"contributors": [
"LoopTech.AI <https://looptech.ai>"
],
"license": "Apache-2.0 AND LicenseRef-Understand-Quickly-Data-License-1.0",
"homepage": "https://looptech-ai.github.io/understand-quickly/",
"repository": {
"type": "git",
"url": "git+https://github.com/looptech-ai/understand-quickly.git"
},
"bugs": {
"url": "https://github.com/looptech-ai/understand-quickly/issues"
},
"type": "module",
"engines": { "node": ">=18.0.0" },
"scripts": {
"validate": "node scripts/validate.mjs",
"sync": "node scripts/sync.mjs",
"render": "node scripts/render-readme.mjs",
"aggregate": "node scripts/aggregate.mjs",
"badges": "node scripts/render-badges.mjs --registry registry.json --out site/badges",
"well-known": "node scripts/well-known.mjs --registry registry.json --out site/.well-known",
"sitemap": "node scripts/render-sitemap.mjs",
"test": "node --test 'scripts/__tests__/*.test.mjs'",
"test:coverage": "c8 --check-coverage --lines 90 --functions 90 --branches 80 node --test 'scripts/__tests__/*.test.mjs'",
"smoke": "node scripts/sync.mjs --registry tests/registry-smoke.json --dry-run",
"smoke:browser": "playwright test --config tests/playwright/playwright.config.cjs"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"c8": "^11.0.0"
}
}