-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.89 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
{
"name": "@makegov/tango-node",
"version": "0.3.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",
"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,
"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",
"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.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"globals": "^15.12.0",
"prettier": "^3.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"dependencies": {}
}