-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.9 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
{
"name": "usai-api",
"version": "0.4.0",
"description": "Node.js client library for the USAi.gov API: Government AI service with OpenAI-compatible interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"government",
"usai",
"openai-compatible",
"api-client",
"federal",
"llm",
"claude",
"llama",
"gemini",
"embeddings"
],
"author": "Your Name <mark.headd@adhocteam.us>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adhocteam/usai-api.git"
},
"bugs": {
"url": "https://github.com/adhocteam/usai-api/issues"
},
"homepage": "https://github.com/adhocteam/usai-api#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"peerDependencies": {
"@types/node": ">=20"
},
"overrides": {
"brace-expansion": "^5.0.5"
}
}