-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.24 KB
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
{
"name": "@ulfsri/neris-nodejs-client",
"version": "1.0.18",
"description": "API client, authentication middleware, and binding for the Neris OpenAPI service",
"files": [
"dist"
],
"module": "dist/main.js",
"types": "dist/main.d.ts",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"scripts": {
"build": "tsc --project ./tsconfig-build.json && copyfiles -f ./src/neris-api.d.ts ./dist",
"generate_local": "openapi-typescript http://localhost:8000/openapi.json --default-non-nullable false --enum-values=true --output src/neris-api.d.ts",
"generate_dev": "openapi-typescript https://api-dev.neris.fsri.org/openapi.json --default-non-nullable false --enum-values=true --output src/neris-api.d.ts",
"generate_test": "openapi-typescript https://api-test.neris.fsri.org/openapi.json --default-non-nullable false --enum-values=true --output src/neris-api.d.ts",
"generate": "openapi-typescript https://api.neris.fsri.org/openapi.json --default-non-nullable false --enum-values=true --output src/neris-api.d.ts",
"check": "tsc --noEmit",
"lint": "echo no lint",
"prepare": "npm run generate && npm run build",
"release": "standard-version && git push --follow-tags && npm publish",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulfsri/neris-nodejs-client.git"
},
"keywords": [
"neris",
"fsri",
"ulfsri"
],
"author": "thomas.messbauer@ul.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulfsri/neris-nodejs-client/issues"
},
"homepage": "https://github.com/ulfsri/neris-nodejs-client#readme",
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"dependencies": {
"openapi-fetch": "^0.13.8"
},
"devDependencies": {
"@types/shpjs": "^3.4.7",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.6.1",
"msw": "^2.11.2",
"openapi-typescript": "^7.9.1",
"openapi-typescript-fetch": "^2.2.1",
"prettier": "^3.6.2",
"shpjs": "^6.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}