@oumla/sdk 0.0.5 → 1.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/package.json CHANGED
@@ -1,28 +1,63 @@
1
1
  {
2
2
  "name": "@oumla/sdk",
3
- "version": "0.0.5",
4
- "description": "Oumla SDK is the fastest way to integrate with blockchain networks",
5
- "private": false,
6
- "main": "dist/index.js",
7
- "module": "dist/index.mjs",
8
- "types": "dist/index.d.ts",
9
- "devDependencies": {
10
- "@changesets/cli": "^2.27.1",
11
- "@types/node": "^18.14.0",
12
- "tsup": "^6.7.0",
13
- "typescript": "5.0.4",
14
- "vitest": "^1.1.3",
15
- "zod": "^3.22.4"
3
+ "version": "1.1.0",
4
+ "type": "module",
5
+ "description": "Official TypeScript SDK for Oumla - Blockchain integration made simple",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "clean": "rm -rf dist",
25
+ "prepublishOnly": "pnpm run build",
26
+ "test": "echo \"No tests specified\" && exit 0",
27
+ "lint": "echo \"No linting specified\" && exit 0"
16
28
  },
17
- "keywords": [],
29
+ "keywords": [
30
+ "oumla",
31
+ "sdk",
32
+ "typescript",
33
+ "blockchain",
34
+ "api",
35
+ "client",
36
+ "crypto",
37
+ "web3",
38
+ "ethereum",
39
+ "smart-contracts",
40
+ "tokenization"
41
+ ],
18
42
  "author": "Mohammed aljasser",
19
43
  "license": "MIT",
20
- "scripts": {
21
- "build": "tsup src/index.ts --format cjs,esm --dts",
22
- "lint": "tsc",
23
- "test": "vitest run",
24
- "dev": "vitest",
25
- "ci": "pnpm run lint && pnpm run test && pnpm run build",
26
- "release": "pnpm run build && changeset publish"
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/oumla/sdk.git",
47
+ "directory": "sdks/typescript"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/oumla/sdk/issues"
51
+ },
52
+ "homepage": "https://docs.oumla.com",
53
+ "engines": {
54
+ "node": ">=18.0.0"
55
+ },
56
+ "devDependencies": {
57
+ "tsup": "^6.7.0",
58
+ "typescript": "5.0.4"
59
+ },
60
+ "publishConfig": {
61
+ "access": "public"
27
62
  }
28
- }
63
+ }
@@ -1,8 +0,0 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
- with multi-package repos, or single-package repos to help you version and publish your code. You can
5
- find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
-
7
- We have a quick list of common questions to get you started engaging with this project in
8
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -1,11 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "public",
8
- "baseBranch": "master",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }
package/.prettierrc DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "trailingComma": "es5",
3
- "tabWidth": 4,
4
- "semi":true,
5
- "singleQuote": true
6
-
7
- }