-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
{
"name": "neon-sdk",
"version": "1.27.1",
"description": "TypeScript SDK for managing your Neon Serverless PostgreSQL projects",
"keywords": [
"neon",
"sdk",
"postgresql",
"serverless"
],
"homepage": "https://github.com/paambaati/neon-js-sdk",
"bugs": {
"url": "https://github.com/paambaati/neon-js-sdk/issues"
},
"license": "MIT",
"author": {
"name": "GP",
"email": "[email protected]",
"url": "https://httgp.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paambaati/neon-js-sdk.git"
},
"config": {
"neonOpenApiSpec": "https://dfv3qgd2ykmrx.cloudfront.net/api_spec/release/v2.json"
},
"scripts": {
"generate": "npx openapi-typescript-codegen --useUnionTypes --name NeonClient --input $npm_package_config_neonOpenApiSpec --output ./generated",
"build": "tsup --config tsup.config.ts",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18",
"deno": ">=1.28"
},
"engineStrict": true,
"files": [
"dist/"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"provenance": true,
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.7",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"openapi-typescript-codegen": "0.28.0",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
"packageManager": "[email protected]"
}