-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 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
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
100
101
102
103
104
105
106
{
"name": "agentic-strata",
"version": "0.4.0-alpha.1",
"description": "Executable, contract-first reference architecture for enterprise agentic applications.",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Antonio Antenore",
"email": "ant_ant95@hotmail.it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aantenore/AgenticStrata.git"
},
"homepage": "https://github.com/aantenore/AgenticStrata#readme",
"bugs": {
"url": "https://github.com/aantenore/AgenticStrata/issues"
},
"keywords": [
"agentic-ai",
"ai-agents",
"enterprise-architecture",
"conformance",
"governance",
"json-schema",
"receipts"
],
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22"
},
"bin": {
"agentic-strata": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sigstore": {
"types": "./dist/adapters/sigstore.d.ts",
"import": "./dist/adapters/sigstore.js"
}
},
"files": [
"dist",
"schemas",
"config",
"adapters",
"examples",
"docs",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"audit:production": "npm audit --omit=dev",
"audit:repository": "node scripts/audit-repository.mjs",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run audit:repository",
"demo": "npm run build && node dist/cli.js demo --output .tmp/demo",
"pack:check": "npm pack --dry-run && publint --strict && attw --pack . --profile esm-only",
"package:smoke": "node scripts/package-smoke.mjs",
"release:check": "npm run check && npm run audit:production && npm run pack:check && npm run package:smoke",
"prepack": "npm run build"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"canonicalize": "3.0.0",
"commander": "^14.0.0",
"yaml": "^2.8.1"
},
"peerDependencies": {
"@sigstore/bundle": "^5.0.0",
"sigstore": "^5.0.0"
},
"peerDependenciesMeta": {
"@sigstore/bundle": {
"optional": true
},
"sigstore": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@sigstore/bundle": "^5.0.0",
"@eslint/js": "^9.31.0",
"@types/node": "^22.17.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"publint": "^0.3.21",
"sigstore": "^5.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
}
}