-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "@nimiplatform/nimi-coding",
"version": "0.6.4",
"private": false,
"description": "Canonical authority products and bounded read-only code queries for AI coding systems.",
"license": "MIT",
"homepage": "https://docs.nimi.ai/nimicoding",
"repository": {
"type": "git",
"url": "git+https://github.com/nimiplatform/nimi-coding.git"
},
"bugs": {
"url": "https://github.com/nimiplatform/nimi-coding/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nimiplatform"
},
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true
},
"bin": {
"nimicoding": "bin/nimicoding.mjs"
},
"exports": {},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"keywords": [
"ai",
"coding",
"authority",
"code-intelligence",
"methodology",
"spec",
"nimicoding"
],
"dependencies": {
"typescript": "5.9.3",
"yaml": "^2.8.1"
},
"files": [
"bin",
"cli",
"contracts",
"methodology",
"spec",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"LICENSE"
],
"scripts": {
"check:authority-surface": "node ./cli/dev/check-authority-surface.mjs",
"check:product-conformance": "node ./cli/dev/check-product-conformance.mjs",
"check:product-conformance:packed": "node ./cli/dev/check-product-conformance.mjs --packed",
"check:ci": "pnpm test && pnpm check:pack && pnpm check:product-conformance:packed && node ./cli/dev/run-cli-smoke.mjs",
"check:pack": "npm pack --dry-run",
"prepack": "node ./cli/dev/check-authority-surface.mjs && node ./cli/dev/check-product-conformance.mjs",
"test": "node ./cli/dev/run-suite.mjs"
}
}