@zoralabs/protocol-sdk 0.9.3 → 0.9.4-PRE.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/.env ADDED
@@ -0,0 +1 @@
1
+ VITE_CONDUIT_KEY=066ae224-b5c3-4086-ac11-a3a44ede9458
@@ -1,18 +1,18 @@
1
-
2
- > @zoralabs/protocol-sdk@0.9.3 build /home/runner/work/zora-protocol-private/zora-protocol-private/packages/protocol-sdk
3
- > pnpm tsup
4
-
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.build.json
7
- CLI tsup v7.3.0
8
- CLI Using tsup config: /home/runner/work/zora-protocol-private/zora-protocol-private/packages/protocol-sdk/tsup.config.ts
9
- CLI Target: es2021
10
- CLI Cleaning output folder
11
- CJS Build start
12
- ESM Build start
13
- CJS dist/index.cjs 200.28 KB
14
- CJS dist/index.cjs.map 402.68 KB
15
- CJS ⚡️ Build success in 311ms
16
- ESM dist/index.js 194.39 KB
17
- ESM dist/index.js.map 400.66 KB
18
- ESM ⚡️ Build success in 334ms
1
+
2
+ > @zoralabs/protocol-sdk@0.9.4-PRE.0 build /Users/danovedzora/source/zora-protocol/packages/protocol-sdk
3
+ > pnpm tsup
4
+
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.build.json
7
+ CLI tsup v7.3.0
8
+ CLI Using tsup config: /Users/danovedzora/source/zora-protocol/packages/protocol-sdk/tsup.config.ts
9
+ CLI Target: es2021
10
+ CLI Cleaning output folder
11
+ CJS Build start
12
+ ESM Build start
13
+ CJS dist/index.cjs 200.28 KB
14
+ CJS dist/index.cjs.map 402.68 KB
15
+ CJS ⚡️ Build success in 53ms
16
+ ESM dist/index.js 194.39 KB
17
+ ESM dist/index.js.map 400.66 KB
18
+ ESM ⚡️ Build success in 53ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @zoralabs/protocol-sdk
2
2
 
3
+ ## 0.9.4-PRE.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6fa9e6c3]
8
+ - @zoralabs/protocol-deployments@0.3.1-PRE.0
9
+
3
10
  ## 0.9.3
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-sdk",
3
- "version": "0.9.3",
3
+ "version": "0.9.4-PRE.0",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,9 +15,18 @@
15
15
  "default": "./dist/index.cjs"
16
16
  }
17
17
  },
18
+ "scripts": {
19
+ "build": "pnpm tsup",
20
+ "prepack": "pnpm build",
21
+ "test:js": "vitest src",
22
+ "test:integration": "vitest test-integration",
23
+ "generate-types": "echo 'npx is used here because this is a rare operation' && npx openapi-typescript https://api.zora.co/premint/openapi.json -o src/apis/generated/premint-api-types.ts",
24
+ "prettier:write": "prettier --write 'src/**/*.ts' 'test-integration/**/*.ts'",
25
+ "lint": "prettier --check 'src/**/*.ts' 'test-integration/**/*.ts'"
26
+ },
18
27
  "dependencies": {
19
- "abitype": "^1.0.2",
20
- "@zoralabs/protocol-deployments": "^0.3.0"
28
+ "@zoralabs/protocol-deployments": "workspace:^",
29
+ "abitype": "^1.0.2"
21
30
  },
22
31
  "peerDependencies": {
23
32
  "viem": "^2.13.2"
@@ -28,6 +37,7 @@
28
37
  "@reservoir0x/reservoir-sdk": "^2.0.11",
29
38
  "@types/node": "^20.13.0",
30
39
  "@types/semver": "^7.5.8",
40
+ "@zoralabs/tsconfig": "workspace:^",
31
41
  "graphql-prettier": "^1.0.6",
32
42
  "multiformats": "^13.2.0",
33
43
  "prettier": "^3.0.3",
@@ -36,15 +46,6 @@
36
46
  "tsup": "^7.2.0",
37
47
  "typescript": "^5.2.2",
38
48
  "vite": "^4.5.0",
39
- "vitest": "^2.0.5",
40
- "@zoralabs/tsconfig": "^0.0.0"
41
- },
42
- "scripts": {
43
- "build": "pnpm tsup",
44
- "test:js": "vitest src",
45
- "test:integration": "vitest test-integration",
46
- "generate-types": "echo 'npx is used here because this is a rare operation' && npx openapi-typescript https://api.zora.co/premint/openapi.json -o src/apis/generated/premint-api-types.ts",
47
- "prettier:write": "prettier --write 'src/**/*.ts' 'test-integration/**/*.ts'",
48
- "lint": "prettier --check 'src/**/*.ts' 'test-integration/**/*.ts'"
49
+ "vitest": "^2.0.5"
49
50
  }
50
- }
51
+ }