-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "@heightapp/client",
"version": "1.0.2",
"description": "Client for Height API",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"typings": "./dist/types/index.d.ts",
"scripts": {
"build": "NODE_ENV=production ./scripts/build.js --esm --cjs --types",
"dev": "NODE_ENV=development ./scripts/build.js --esm && node -r dotenv/config dist/esm/index.js ",
"lint": "eslint ./src",
"prepare": "npm run build"
},
"repository": "git+https://github.com/heightapp/node-client.git",
"author": "Height",
"license": "MIT",
"bugs": {
"url": "https://github.com/heightapp/node-client/issues"
},
"homepage": "https://github.com/heightapp/node-client#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "^5.34.0",
"esbuild": "^0.15.5",
"esbuild-plugin-ifdef": "^1.0.1",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"tsc-alias": "^1.7.0",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"dependencies": {
"@types/node": "^18.7.11",
"dotenv": "^16.0.1",
"node-fetch": "^3.2.10"
}
}