@smartsides/oracle-ebs-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,80 @@
1
+ {
2
+ "name": "@smartsides/oracle-ebs-sdk",
3
+ "version": "1.0.0",
4
+ "description": "TypeScript SDK for Oracle EBS API - Optimized for Next.js 15+",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./server": {
15
+ "types": "./dist/server/index.d.ts",
16
+ "import": "./dist/server/index.mjs",
17
+ "require": "./dist/server/index.js"
18
+ },
19
+ "./hooks": {
20
+ "types": "./dist/hooks/index.d.ts",
21
+ "import": "./dist/hooks/index.mjs",
22
+ "require": "./dist/hooks/index.js"
23
+ }
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "dev": "tsup --watch",
33
+ "test": "vitest",
34
+ "test:coverage": "vitest --coverage",
35
+ "lint": "eslint src --ext .ts,.tsx",
36
+ "typecheck": "tsc --noEmit",
37
+ "prepublishOnly": "npm run build"
38
+ },
39
+ "keywords": [
40
+ "oracle",
41
+ "ebs",
42
+ "sdk",
43
+ "typescript",
44
+ "nextjs",
45
+ "react",
46
+ "api-client"
47
+ ],
48
+ "author": "SmartSides Development Team",
49
+ "license": "PROPRIETARY",
50
+ "publishConfig": {
51
+ "access": "restricted"
52
+ },
53
+ "peerDependencies": {
54
+ "@tanstack/react-query": "^5.0.0",
55
+ "react": "^18.0.0 || ^19.0.0"
56
+ },
57
+ "peerDependenciesMeta": {
58
+ "@tanstack/react-query": {
59
+ "optional": true
60
+ },
61
+ "react": {
62
+ "optional": true
63
+ }
64
+ },
65
+ "dependencies": {
66
+ "ky": "^1.7.2"
67
+ },
68
+ "devDependencies": {
69
+ "@tanstack/react-query": "^5.59.20",
70
+ "@types/node": "^20.17.6",
71
+ "@types/react": "^18.3.12",
72
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
73
+ "@typescript-eslint/parser": "^7.18.0",
74
+ "eslint": "^8.57.1",
75
+ "react": "^18.3.1",
76
+ "tsup": "^8.3.5",
77
+ "typescript": "^5.6.3",
78
+ "vitest": "^2.1.5"
79
+ }
80
+ }