-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 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
{
"name": "@gridscale/gsclient-js",
"version": "1.9.5",
"description": "gridscale API Wrapper",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/cjs/index.d.ts",
"files": [
"dist/**/*"
],
"private": false,
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && tsc-alias -p tsconfig.json && ./scripts/fixup",
"build-browser": "npm run build && webpack",
"updateFromSpec": "node ./scripts/types_from_apispec.mjs",
"prepack": "npm run build",
"postversion": "echo \"/** autogenerated by 'npm script:postversion', do not change!**/\nexport const VERSION=$(npm pkg get version);\" > src/.version.ts && git add src/.version.ts && git commit -m\"bump version to $(npm pkg get version)\""
},
"homepage": "https://gridscale.io",
"repository": "https://github.com/gridscale/gsclient-js",
"author": "Marc Dittmann <[email protected]> (https://gridscale.io/)",
"keywords": [
"gridscale",
"api",
"cloud",
"server",
"firewall",
"automation",
"load balancer",
"kubernetes",
"paas",
"ip"
],
"license": "ISC",
"dependencies": {
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.123",
"@types/node": "^14.14.21",
"chalk": "^5.3.0",
"del": "^6.0.0",
"js-yaml": "^4.0.0",
"merge2": "^1.0.2",
"openapi-typescript-codegen": "^0.7.2",
"ts-loader": "^9.4.4",
"tsc-alias": "^1.8.8",
"typescript": "~4.3.5",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0"
}
}