@volant-autonomy/via-sdk 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by openapi-typescript.
4
+ * Do not make direct changes to the file.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@volant-autonomy/via-sdk",
3
+ "version": "1.0.1",
4
+ "license": "MIT",
5
+ "source": "src/index.ts",
6
+ "types": "dist/index.d.ts",
7
+ "module": "dist/index.js",
8
+ "files": [
9
+ "dist/**"
10
+ ],
11
+ "tsp": {
12
+ "tscOptions": {
13
+ "parseAllJsDoc": true
14
+ }
15
+ },
16
+ "devDependencies": {
17
+ "@jest/globals": "^29.6.4",
18
+ "@types/jest": "^29.5.11",
19
+ "@typescript-eslint/eslint-plugin": "^7.15.0",
20
+ "@typescript-eslint/parser": "^7.15.0",
21
+ "eslint": "^8.57.0",
22
+ "eslint-config-prettier": "^9.1.0",
23
+ "eslint-plugin-import": "^2.29.1",
24
+ "eslint-plugin-jest": "^28.6.0",
25
+ "eslint-plugin-jsdoc": "^48.5.0",
26
+ "esm": "^3.2.25",
27
+ "jest": "^29.7.0",
28
+ "openapi-typescript": "^7.1.0",
29
+ "prettier": "^3.3.2",
30
+ "prettier-eslint": "^16.3.0",
31
+ "standard": "^17.0.0",
32
+ "ts-jest": "^29.1.5",
33
+ "ts-node": "^10.9.2",
34
+ "ts-patch": "^3.2.1",
35
+ "typescript": "^5.5.4"
36
+ },
37
+ "scripts": {
38
+ "prepack": "npm run build",
39
+ "build": "tspc -p tsconfig.build.json",
40
+ "build-test": "./build-test.sh",
41
+ "gen-schema": "./gen-schema.sh",
42
+ "test": "node --experimental-vm-modules ./node_modules/.bin/jest --silent",
43
+ "fix-prettier": "prettier \"**/*.[ts][tsx]\" --write",
44
+ "fix-eslint": "eslint --fix .",
45
+ "fix-all": "npm run fix-prettier && npm run fix-eslint",
46
+ "check-tsc": "tsc --noEmit",
47
+ "check-prettier": "prettier \"**/*.[ts][tsx]\" --check",
48
+ "check-eslint": "eslint .",
49
+ "check-all": "npm run check-tsc && npm run check-prettier && npm run check-eslint"
50
+ },
51
+ "dependencies": {
52
+ "openapi-fetch": "^0.10.2",
53
+ "openapi-typescript-helpers": "^0.0.11"
54
+ },
55
+ "description": "An auto-generated type-safe wrapper for the Via API with automatic authentication handling. Usable in TypeScript or JavaScript."
56
+ }