-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "@makegov/tango-node",
"version": "1.1.0",
"description": "Official Node.js SDK for the Tango API – dynamic response shaping, typed models, and full endpoint coverage.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tango-node": "./dist/bin/tango-node.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./models": {
"import": "./dist/models/index.js",
"types": "./dist/models/index.d.ts",
"default": "./dist/models/index.js"
},
"./shapes": {
"import": "./dist/shapes/index.js",
"types": "./dist/shapes/index.d.ts",
"default": "./dist/shapes/index.js"
}
},
"sideEffects": false,
"files": [
"dist/",
"docs/",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"check-conformance": "tsx scripts/check-filter-shape-conformance.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"keywords": [
"tango",
"makegov",
"federal-contracts",
"procurement",
"grants",
"sdk",
"api-client",
"govtech"
],
"author": "MakeGov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/makegov/tango-node.git"
},
"bugs": {
"url": "https://github.com/makegov/tango-node/issues"
},
"homepage": "https://github.com/makegov/tango-node#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "22.19.19",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"@vitest/coverage-v8": "2.1.9",
"eslint": "9.39.4",
"globals": "15.15.0",
"prettier": "3.8.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "2.1.9"
},
"dependencies": {
"commander": "^12.1.0"
}
}