-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 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
{
"name": "@axonflow/sdk",
"version": "8.5.1",
"description": "AxonFlow SDK - Add invisible AI governance to your applications in 3 lines of code",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"stamp-version": "node scripts/stamp-version.js",
"prebuild": "npm run stamp-version",
"build": "npm run prebuild && npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "tsc && tsc --project tsconfig.esm.json && node scripts/fix-esm-imports.js",
"dev": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:contract": "jest tests/contract.test.ts",
"test:integration": "jest tests/integration.test.ts --testTimeout=30000 --testPathIgnorePatterns='/node_modules/'",
"test:e2e": "jest tests/e2e-staging.test.ts --testTimeout=60000 --runInBand --testPathIgnorePatterns='/node_modules/'",
"test:all": "jest --testPathIgnorePatterns='/node_modules/' --testTimeout=60000",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' 'tests/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' 'tests/**/*.ts'",
"prerelease": "npm run lint && npm run test:coverage && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"axonflow",
"ai",
"governance",
"openai",
"anthropic",
"llm",
"security",
"compliance",
"policy",
"mcp",
"connectors",
"multi-agent"
],
"author": "AxonFlow <hello@getaxonflow.com>",
"license": "MIT",
"homepage": "https://getaxonflow.com",
"repository": {
"type": "git",
"url": "git+https://github.com/getaxonflow/axonflow-sdk-typescript.git"
},
"bugs": {
"url": "https://github.com/getaxonflow/axonflow-sdk-typescript/issues"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.994.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"yaml": "^2.8.3"
},
"dependencies": {
"openai": "^6.15.0"
},
"overrides": {
"fast-xml-parser": "^5.7.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}