-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 KB
/
package.json
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
{
"name": "@_dotlas/api",
"version": "1.0.0",
"description": "A simple client for the Dotlas REST API",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 7.0.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"browser": "./dist/esm/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "pnpm run clean && tsc --project tsconfig.json && tsc --project tsconfig.cjs.json",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"lint": "eslint . --ignore-path .gitignore",
"prepare": "pnpm run build",
"types:api": " pnpm exec openapi-typescript \"https://api.dotlas.com/openapi.json\" --output src/types.ts -c .prettierrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotlas/api-node-client.git"
},
"keywords": [
"dotlas",
"location",
"geospatial",
"census",
"api",
"rest",
"client"
],
"author": "Dotlas, Inc. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotlas/api-node-client/issues"
},
"homepage": "https://github.com/dotlas/api-node-client#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"openapi-typescript": "^5.2.0",
"openapi-typescript-fetch": "^1.1.2"
}
}