forked from osovv/grace-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 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
{
"name": "@osovv/grace-cli",
"version": "3.11.0",
"description": "GRACE CLI for linting, status snapshots, module health, verification queries, semantic markup, and querying GRACE artifacts with a Bun-powered grace binary.",
"license": "MIT",
"homepage": "https://github.com/osovv/grace-marketplace#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/osovv/grace-marketplace.git"
},
"bugs": {
"url": "https://github.com/osovv/grace-marketplace/issues"
},
"keywords": [
"grace",
"cli",
"lint",
"bun",
"python",
"typescript",
"semantic-markup",
"knowledge-graph"
],
"publishConfig": {
"access": "public"
},
"files": [
"src/grace-file.ts",
"src/project-utils.ts",
"src/grace.ts",
"src/grace-lint.ts",
"src/grace-module.ts",
"src/grace-status.ts",
"src/grace-verification.ts",
"src/lint",
"src/query",
"README.md",
"LICENSE"
],
"type": "module",
"packageManager": "bun@1.3.8",
"engines": {
"bun": ">=1.3.8"
},
"scripts": {
"grace": "bun run ./src/grace.ts",
"grace:lint": "bun run ./src/grace.ts lint",
"lint": "bun run ./src/grace.ts lint",
"test": "bun test",
"validate:cli": "bun run ./src/grace.ts lint --path . --allow-missing-docs && bun run ./src/grace.ts status --path . --json --fail-on never",
"validate:ci": "bun test && bun run validate:cli && bun run ./scripts/validate-marketplace.ts",
"validate:marketplace": "bun run ./scripts/validate-marketplace.ts",
"validate:release": "bun run validate:ci && bun run ./scripts/release-checklist.ts",
"release:checklist": "bun run ./scripts/release-checklist.ts",
"prepublishOnly": "bun run validate:release"
},
"bin": {
"grace": "./src/grace.ts"
},
"dependencies": {
"citty": "^0.2.2",
"typescript": "^6.0.2"
}
}