-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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": "height-app-api",
"version": "1.0.7",
"description": "Unofficial TypeScript Wrapper for Height App API",
"license": "MIT",
"author": "Beomjun Gil <gil@beomjun.kr> (https://github.com/beomjungil)",
"keywords": [
"height",
"height api",
"height sdk",
"height app",
"height app api",
"height app sdk",
"height typescript"
],
"scripts": {
"lint": "eslint src --ext .ts",
"build": "tsx build.ts",
"generate": "tsx generate.ts"
},
"type": "module",
"module": "dist/es/index.js",
"main": "dist/cjs/index.js",
"types": "dist/types/height-app-api.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"default": "./dist/cjs/index.cjs"
}
},
"files": [
"package.json",
"dist/cjs/index.cjs",
"dist/cjs/index.cjs.map",
"dist/es/height-app-api.mjs.map",
"dist/es/index.js",
"dist/es/index.js.map",
"dist/types/height-app-api.d.ts"
],
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "^0.2.2",
"@microsoft/api-extractor": "^7.34.4",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"openapi-typescript-codegen": "^0.23.0",
"rimraf": "^4.1.2",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"@microsoft/api-documenter": "^7.21.5"
},
"dependencies": {
"cross-fetch": "^3.1.5"
}
}