Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"build": "turbo run build",
"check": "turbo run check",
"format": "turbo run format",
"full-checks": "turbo run full-checks",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck"
},
Expand Down
39 changes: 20 additions & 19 deletions packages/cre-sdk-examples/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"name": "@chainlink/cre-sdk-examples",
"private": true,
"version": "0.0.2-alpha",
"type": "module",
"author": "Ernest Nowacki",
"license": "MIT",
"description": "Demo app with example workflows utilizing CRE TypeScript SDK. It presents usage of CRE SDK and allows SDK developers to test workflows.",
"scripts": {
"check": "biome check --write ${BIOME_PATHS:-.}",
"format": "biome format --write ${BIOME_PATHS:-.}",
"lint": "biome lint --write",
"typecheck": "tsc"
},
"dependencies": {
"@chainlink/cre-sdk": "workspace:*"
},
"engines": {
"bun": ">=1.2.21"
}
"name": "@chainlink/cre-sdk-examples",
"private": true,
"version": "0.0.2-alpha",
"type": "module",
"author": "Ernest Nowacki",
"license": "MIT",
"description": "Demo app with example workflows utilizing CRE TypeScript SDK. It presents usage of CRE SDK and allows SDK developers to test workflows.",
"scripts": {
"check": "biome check --write ${BIOME_PATHS:-.}",
"format": "biome format --write ${BIOME_PATHS:-.}",
"full-checks": "bun typecheck && bun lint",
"lint": "biome lint --write",
"typecheck": "tsc"
},
"dependencies": {
"@chainlink/cre-sdk": "workspace:*"
},
"engines": {
"bun": ">=1.2.21"
}
}
1 change: 1 addition & 0 deletions packages/cre-sdk-javy-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"clean": "rm -rf dist",
"check": "biome check --write ${BIOME_PATHS:-.}",
"format": "biome format --write ${BIOME_PATHS:-.}",
"full-checks": "bun typecheck && bun lint",
"lint": "biome lint --write",
"typecheck": "tsc",
"prepublishOnly": "bun typecheck && bun lint"
Expand Down
137 changes: 69 additions & 68 deletions packages/cre-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,71 @@
{
"name": "@chainlink/cre-sdk",
"version": "0.0.2-alpha",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"cre-compile": "bin/cre-compile.ts"
},
"files": [
"bin/",
"scripts/",
"dist/",
"package.json",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "bun run clean && bun run compile:build && bun run fix-imports",
"check": "biome check --write ${BIOME_PATHS:-.}",
"clean": "rm -rf dist",
"compile:all-standard-tests": "bun scripts/run.ts compile-all-standard-tests",
"compile:build": "tsc -p tsconfig.build.json",
"compile:js-to-wasm": "bun scripts/run.ts compile-to-wasm",
"compile:ts-to-js": "bun scripts/run.ts compile-to-js",
"compile:workflow": "bun scripts/run.ts compile-workflow",
"fix-imports": "bun scripts/run.ts fix-imports",
"format": "biome format --write ${BIOME_PATHS:-.}",
"generate:chain-selectors": "bun scripts/run.ts generate-chain-selectors && BIOME_PATHS=\"src/generated\" bun check",
"generate:proto": "bunx @bufbuild/buf generate && BIOME_PATHS=\"src/generated\" bun check",
"generate:sdk": "bun generate:proto && bun generate:chain-selectors && bun scripts/run generate-sdks && BIOME_PATHS=\"src/generated src/generated-sdk\" bun check",
"lint": "biome lint --write",
"prepublishOnly": "bun typecheck && bun lint && bun test && bun test:standard",
"test": "bun test",
"test:standard": "./scripts/run-standard-tests.sh",
"typecheck": "tsc"
},
"dependencies": {
"@bufbuild/protobuf": "2.6.3",
"@bufbuild/protoc-gen-es": "2.6.3",
"@chainlink/cre-sdk-javy-plugin": "workspace:*",
"@standard-schema/spec": "1.0.0",
"viem": "2.34.0",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@bufbuild/buf": "1.56.0",
"@types/bun": "1.2.21",
"chain-selectors": "https://github.com/smartcontractkit/chain-selectors.git#8b963095ae797a3024c8e55822cced7bf618176f",
"fast-glob": "3.3.3",
"ts-proto": "2.7.5",
"typescript": "5.9.2",
"yaml": "2.8.1"
},
"publishConfig": {
"access": "public"
},
"author": "SmartContract Chainlink Limited SEZC",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"bun": ">=1.2.21"
}
"name": "@chainlink/cre-sdk",
"version": "0.0.2-alpha",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"cre-compile": "bin/cre-compile.ts"
},
"files": [
"bin/",
"scripts/",
"dist/",
"package.json",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "bun run clean && bun run compile:build && bun run fix-imports",
"check": "biome check --write ${BIOME_PATHS:-.}",
"clean": "rm -rf dist",
"compile:all-standard-tests": "bun scripts/run.ts compile-all-standard-tests",
"compile:build": "tsc -p tsconfig.build.json",
"compile:js-to-wasm": "bun scripts/run.ts compile-to-wasm",
"compile:ts-to-js": "bun scripts/run.ts compile-to-js",
"compile:workflow": "bun scripts/run.ts compile-workflow",
"fix-imports": "bun scripts/run.ts fix-imports",
"format": "biome format --write ${BIOME_PATHS:-.}",
"full-checks": "bun typecheck && bun lint && bun test && bun test:standard",
"generate:chain-selectors": "bun scripts/run.ts generate-chain-selectors && BIOME_PATHS=\"src/generated\" bun check",
"generate:proto": "bunx @bufbuild/buf generate && BIOME_PATHS=\"src/generated\" bun check",
"generate:sdk": "bun generate:proto && bun generate:chain-selectors && bun scripts/run generate-sdks && BIOME_PATHS=\"src/generated src/generated-sdk\" bun check",
"lint": "biome lint --write",
"prepublishOnly": "bun typecheck && bun lint && bun test && bun test:standard",
"test": "bun test",
"test:standard": "./scripts/run-standard-tests.sh",
"typecheck": "tsc"
},
"dependencies": {
"@bufbuild/protobuf": "2.6.3",
"@bufbuild/protoc-gen-es": "2.6.3",
"@chainlink/cre-sdk-javy-plugin": "workspace:*",
"@standard-schema/spec": "1.0.0",
"viem": "2.34.0",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@bufbuild/buf": "1.56.0",
"@types/bun": "1.2.21",
"chain-selectors": "https://github.com/smartcontractkit/chain-selectors.git#8b963095ae797a3024c8e55822cced7bf618176f",
"fast-glob": "3.3.3",
"ts-proto": "2.7.5",
"typescript": "5.9.2",
"yaml": "2.8.1"
},
"publishConfig": {
"access": "public"
},
"author": "SmartContract Chainlink Limited SEZC",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"bun": ">=1.2.21"
}
}