@revoengine/sdk 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@revoengine/sdk",
3
+ "version": "1.0.0",
4
+ "description": "Official Node.js SDK for the RevoEngine Platform",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://gitlab.com/revoengine/sdk.git"
8
+ },
9
+ "homepage": "https://gitlab.com/revoengine/sdk#readme",
10
+ "bugs": {
11
+ "url": "https://gitlab.com/revoengine/sdk/-/issues"
12
+ },
13
+ "keywords": [
14
+ "revoengine",
15
+ "sdk",
16
+ "automation",
17
+ "low-code"
18
+ ],
19
+ "license": "MIT",
20
+ "type": "module",
21
+ "sideEffects": false,
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "require": "./dist/index.cjs"
30
+ },
31
+ "./hosted": {
32
+ "types": "./dist/hosted.d.ts",
33
+ "import": "./dist/hosted.js",
34
+ "require": "./dist/hosted.cjs"
35
+ },
36
+ "./package.json": "./package.json"
37
+ },
38
+ "files": [
39
+ "dist/",
40
+ "licenses/",
41
+ "README.md",
42
+ "LICENSE",
43
+ "THIRD_PARTY_NOTICES.md"
44
+ ],
45
+ "engines": {
46
+ "node": ">=22"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "scripts": {
52
+ "build": "tsup",
53
+ "check": "tsc --noEmit -p tsconfig.json",
54
+ "contract:check": "node scripts/check-contract.mjs",
55
+ "contract:metadata": "node scripts/check-contract.mjs --metadata-only",
56
+ "licenses:check": "node scripts/check-licenses.mjs",
57
+ "licenses:generate": "node scripts/check-licenses.mjs --write",
58
+ "release:check": "node scripts/check-release.mjs",
59
+ "test": "node --import tsx --test test/*.test.ts",
60
+ "test:built": "node scripts/test-built.mjs",
61
+ "test:package": "node scripts/test-package.mjs",
62
+ "prepack": "npm run build && npm run licenses:check && npm run release:check"
63
+ },
64
+ "devDependencies": {
65
+ "@types/node": "^22.15.0",
66
+ "@types/jsonwebtoken": "^9.0.10",
67
+ "@types/object-hash": "^3.0.6",
68
+ "jsonwebtoken": "^9.0.3",
69
+ "object-hash": "^3.0.0",
70
+ "superjson": "^2.2.6",
71
+ "tsup": "^8.5.0",
72
+ "tsx": "^4.20.0",
73
+ "typescript": "^6.0.3",
74
+ "uuid": "^13.0.0"
75
+ }
76
+ }