-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.86 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.86 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
{
"name": "@common-grants/cli",
"version": "0.3.4",
"engines": {
"node": ">=22.0.0"
},
"license": "CC0-1.0",
"description": "The CommonGrants protocol CLI tool",
"main": "dist/index.js",
"files": [
"dist",
"lib",
"!dist/__tests__",
"man/cg.1"
],
"bin": {
"cg": "./dist/index.js"
},
"man": [
"./man/cg.1"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HHS/simpler-grants-protocol.git",
"directory": "lib/cli"
},
"bugs": {
"url": "https://github.com/HHS/simpler-grants-protocol/issues"
},
"homepage": "https://github.com/HHS/simpler-grants-protocol/tree/main/lib/cli#readme",
"keywords": [
"cli",
"protocol",
"grants",
"opportunities"
],
"scripts": {
"build": "pnpm run typespec && tsc",
"typespec:clean": "rm -rf dist tsp-output && rm -rf lib/openapi/*",
"typespec:openapi": "tsp compile lib/main.tsp --emit @typespec/openapi3 && cp tsp-output/@typespec/openapi3/** lib/openapi",
"typespec": "pnpm run typespec:clean && pnpm run typespec:openapi",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepare": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"format": "prettier --write .",
"check:lint": "eslint .",
"check:format": "prettier --check .",
"check:types": "tsc --noEmit",
"checks": "pnpm run check:lint && pnpm run check:format && pnpm run check:types",
"ci": "pnpm run checks && pnpm run build && pnpm run test",
"audit": "pnpm audit"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@typespec/compiler": "catalog:",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"express": "^4.22.2",
"inquirer": "^9.3.8",
"js-yaml": "^4.1.1",
"json-schema-merge-allof": "^0.8.1",
"openapi-types": "^12.1.3",
"swagger-ui-express": "^5.0.1",
"zod": "catalog:"
},
"devDependencies": {
"@common-grants/core": "workspace:*",
"@eslint/js": "catalog:",
"@types/express": "^4.17.25",
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.9",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/node": "catalog:",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@typespec/json-schema": "catalog:",
"@typespec/openapi3": "catalog:",
"@typespec/versioning": "catalog:",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-prettier": "catalog:",
"eslint-plugin-vitest": "catalog:",
"prettier": "catalog:",
"prettier-linter-helpers": "^1.0.1",
"supertest": "^7.2.2",
"ts-node": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
}
}