@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 +1 -0
- package/.turbo/turbo-build.log +18 -18
- package/CHANGELOG.md +7 -0
- package/package.json +15 -14
- package/yarn-error.log +8602 -0
- package/LICENSE +0 -21
package/.env
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VITE_CONDUIT_KEY=066ae224-b5c3-4086-ac11-a3a44ede9458
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
> @zoralabs/protocol-sdk@0.9.
|
|
3
|
-
> pnpm tsup
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
|
|
2
|
+
> @zoralabs/protocol-sdk@0.9.4-PRE.0 build /Users/danovedzora/source/zora-protocol/packages/protocol-sdk
|
|
3
|
+
> pnpm tsup
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.build.json
|
|
7
|
+
[34mCLI[39m tsup v7.3.0
|
|
8
|
+
[34mCLI[39m Using tsup config: /Users/danovedzora/source/zora-protocol/packages/protocol-sdk/tsup.config.ts
|
|
9
|
+
[34mCLI[39m Target: es2021
|
|
10
|
+
[34mCLI[39m Cleaning output folder
|
|
11
|
+
[34mCJS[39m Build start
|
|
12
|
+
[34mESM[39m Build start
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m200.28 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m402.68 KB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 53ms
|
|
16
|
+
[32mESM[39m [1mdist/index.js [22m[32m194.39 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m400.66 KB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 53ms
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zoralabs/protocol-sdk",
|
|
3
|
-
"version": "0.9.
|
|
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
|
-
"
|
|
20
|
-
"
|
|
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
|
+
}
|