-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 4.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 4.1 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
{
"name": "quickstart-agent-augmented-development",
"version": "1.0.0",
"description": "Quickstart template for agent-augmented development with multi-format skill exports.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run test:validator && npm run validate:cross-references && npm run validate:definitions",
"test:exporters": "jest tests/integration/exporters/",
"test:context-loader": "jest tests/integration/exporters/context-loader.test.js",
"test:context-loader:watch": "jest tests/integration/exporters/context-loader.test.js --watch",
"test:context-loader:coverage": "jest tests/integration/exporters/context-loader.test.js --coverage",
"test:parser": "jest tests/integration/exporters/parser.test.js",
"test:parser:watch": "jest tests/integration/exporters/parser.test.js --watch",
"test:parser:coverage": "jest tests/integration/exporters/parser.test.js --coverage",
"test:deploy": "jest tests/integration/deploy-skills.test.js",
"export:agents": "node tools/exporters/opencode-exporter.js",
"export:skills": "node tools/scripts/skills-exporter.js",
"export:all": "npm run export:agents && npm run export:skills",
"deploy:skills": "node tools/scripts/deploy-skills.js",
"deploy:claude": "node tools/scripts/deploy-skills.js --claude --agents --rules --claude-md",
"deploy:claude:skills": "node tools/scripts/deploy-skills.js --claude",
"deploy:claude:agents": "node tools/scripts/deploy-skills.js --agents",
"deploy:claude:rules": "node tools/scripts/deploy-skills.js --rules",
"deploy:claude:md": "node tools/scripts/deploy-skills.js --claude-md",
"deploy:claude:prompts": "node tools/scripts/deploy-skills.js --prompts-legacy",
"deploy:copilot": "node tools/scripts/deploy-skills.js --copilot",
"deploy:opencode": "node tools/scripts/deploy-skills.js --opencode",
"deploy:all": "node tools/scripts/deploy-skills.js --all",
"build": "npm run export:all && npm run deploy:all",
"test:validator": "node --test tools/scripts/test-markua-validator.mjs tools/scripts/test-markua-validator-integration.mjs",
"validate:cross-references": "node tools/scripts/validate-cross-references.mjs",
"validate:definitions": "node tools/scripts/validate-definition-lists.mjs",
"validate:prompts": "node tools/validators/prompt-validator-cli.js fixtures/prompts",
"validate:prompts:strict": "node tools/validators/prompt-validator-cli.js fixtures/prompts --threshold 85",
"validate:prompts:verbose": "node tools/validators/prompt-validator-cli.js fixtures/prompts --verbose",
"validate:prompts:json": "node tools/validators/prompt-validator-cli.js fixtures/prompts --format json",
"test:anchors": "node ops/scripts/test-markua-anchors.mjs",
"validate:definition-anchors": "node ops/scripts/validate-definition-anchors.mjs",
"spell": "cspell lint 'manuscript/**/*.md' --no-progress --show-suggestions",
"spell:manuscript": "cspell lint 'manuscript/**/*.md' --no-progress --show-suggestions",
"spell:docs": "cspell lint 'docs/**/*.md' --no-progress --show-suggestions",
"lint:markua": "remark manuscript --ext md --frail --ignore-path .remarkignore",
"lint:text": "npm run spell && npm run lint:markua",
"lint:shell": "shellcheck $(find . -name '*.sh' -type f | grep -v node_modules | grep -v '.git')",
"lint:shell:report": "shellcheck --format=json $(find . -name '*.sh' -type f | grep -v node_modules | grep -v '.git') > shellcheck-report.json 2>&1 || true",
"lint": "npm run lint:text && npm run lint:shell"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"tiktoken": "^1.0.22"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cspell": "^9.4.0",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"mdast-util-to-string": "^4.0.0",
"remark-cli": "^12.0.0",
"remark-preset-lint-recommended": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"overrides": {
"test-exclude": {
"glob": "^10.4.0"
},
"inflight": "npm:@npmcli/inflight@^1.0.1"
}
}