forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.76 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.76 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
{
"name": "@finos/calm-cli",
"version": "1.14.1",
"description": "A set of tools for interacting with the Common Architecture Language Model (CALM)",
"homepage": "https://calm.finos.org",
"repository": {
"type": "git",
"url": "https://github.com/finos/architecture-as-code.git"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"bin": {
"calm": "dist/index.js"
},
"scripts": {
"build": "tsup && npm run copy-calm-schema && npm run copy-docify-templates && npm run copy-widgets && npm run copy-ai-tools && npm run copy-auth-plugins",
"watch": "node watch.mjs",
"copy-calm-schema": "copyfiles \"../calm/release/**/meta/*\" \"../calm/draft/**/meta/*\" dist/calm/",
"copy-docify-templates": "copyfiles \"../shared/dist/template-bundles/**/*\" dist --up 3",
"copy-widgets": "copyfiles \"../calm-widgets/dist/cli/widgets/**/*\" dist --up 4",
"copy-ai-tools": "copyfiles \"../calm-ai/tools/**/*\" \"../calm-ai/CALM.chatmode.md\" dist/calm-ai/ --up 2",
"copy-auth-plugins": "copyfiles \"./cli-auth-plugins/**/*\" dist/plugins/ --up 1",
"test": "vitest run",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"dependency-check": "dependency-check --project 'calm-cli' --scan . --out ./dependency-check-report --format ALL --suppression ../.github/node-cve-ignore-list.xml",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"validation"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^14.0.0",
"@inquirer/prompts": "^7.4.1",
"commander": "^14.0.0",
"copyfiles": "^2.4.1",
"execa": "^9.6.0",
"express-rate-limit": "^8.0.0",
"mkdirp": "^3.0.1",
"ts-node": "10.9.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/json-pointer": "^1.0.34",
"@types/junit-report-builder": "^3.0.2",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.0",
"@types/supertest": "^6.0.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"axios": "^1.12.0",
"chokidar": "^4.0.3",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"link": "^2.1.1",
"semantic-release": "^24.0.0",
"supertest": "^7.1.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"xml2js": "^0.6.2"
}
}