@nvisy/sdk 0.1.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/CHANGELOG.md +49 -0
- package/CONTRIBUTING.md +72 -0
- package/LICENSE.txt +21 -0
- package/README.md +108 -0
- package/dist/builder-BEUIGfoZ.d.ts +138 -0
- package/dist/builder.d.ts +2 -0
- package/dist/builder.js +424 -0
- package/dist/builder.js.map +1 -0
- package/dist/client.d.ts +2 -0
- package/dist/client.js +424 -0
- package/dist/client.js.map +1 -0
- package/dist/errors.d.ts +124 -0
- package/dist/errors.js +201 -0
- package/dist/errors.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +555 -0
- package/dist/index.js.map +1 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nvisy/sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Official TypeScript SDK for Nvisy document redaction platform",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"nvisy",
|
|
7
|
+
"document",
|
|
8
|
+
"redaction",
|
|
9
|
+
"sdk",
|
|
10
|
+
"api",
|
|
11
|
+
"typescript",
|
|
12
|
+
"client"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/nvisycom/sdk#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/nvisycom/sdk/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/nvisycom/sdk.git"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "Nvisy <support@nvisy.com>",
|
|
24
|
+
"type": "module",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./client": {
|
|
31
|
+
"types": "./dist/client.d.ts",
|
|
32
|
+
"import": "./dist/client.js"
|
|
33
|
+
},
|
|
34
|
+
"./builder": {
|
|
35
|
+
"types": "./dist/builder.d.ts",
|
|
36
|
+
"import": "./dist/builder.js"
|
|
37
|
+
},
|
|
38
|
+
"./errors": {
|
|
39
|
+
"types": "./dist/errors.d.ts",
|
|
40
|
+
"import": "./dist/errors.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"main": "./dist/index.js",
|
|
44
|
+
"module": "./dist/index.js",
|
|
45
|
+
"types": "./dist/index.d.ts",
|
|
46
|
+
"files": [
|
|
47
|
+
"dist",
|
|
48
|
+
"README.md",
|
|
49
|
+
"LICENSE.txt",
|
|
50
|
+
"CHANGELOG.md",
|
|
51
|
+
"CONTRIBUTING.md"
|
|
52
|
+
],
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup",
|
|
55
|
+
"build:watch": "tsup --watch",
|
|
56
|
+
"dev": "tsup --watch",
|
|
57
|
+
"test": "vitest",
|
|
58
|
+
"test:watch": "vitest --watch",
|
|
59
|
+
"test:coverage": "vitest --coverage",
|
|
60
|
+
"test:ui": "vitest --ui",
|
|
61
|
+
"lint": "biome lint .",
|
|
62
|
+
"lint:fix": "biome lint --write .",
|
|
63
|
+
"format": "biome format --write .",
|
|
64
|
+
"format:check": "biome format .",
|
|
65
|
+
"check": "biome check .",
|
|
66
|
+
"check:fix": "biome check --write .",
|
|
67
|
+
"typecheck": "tsc --noEmit",
|
|
68
|
+
"clean": "rimraf dist",
|
|
69
|
+
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
70
|
+
"release": "npm run prepublishOnly && npm publish"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"openapi-fetch": "^0.15.0"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@biomejs/biome": "^2.2.6",
|
|
77
|
+
"@types/node": "^24.7.2",
|
|
78
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
79
|
+
"@vitest/ui": "^3.2.4",
|
|
80
|
+
"openapi-typescript": "^7.9.1",
|
|
81
|
+
"rimraf": "^6.0.1",
|
|
82
|
+
"tsup": "^8.0.1",
|
|
83
|
+
"typescript": "^5.9.3",
|
|
84
|
+
"vitest": "^3.2.4"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=20.0.0"
|
|
88
|
+
},
|
|
89
|
+
"publishConfig": {
|
|
90
|
+
"access": "public"
|
|
91
|
+
}
|
|
92
|
+
}
|