-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,4 +45,4 @@ jobs: | |
run: bun install --frozen-lockfile | ||
|
||
- name: Build | ||
run: bun build | ||
run: bun run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,63 @@ | ||
{ | ||
"name": "@effectai/effect-js", | ||
"version": "2.0.0", | ||
"description": "Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))", | ||
"main": "./dist/exports/index.js", | ||
"module": "./dist/exports/index.js", | ||
"browser": "dist/exports/index.js", | ||
"types": "./dist/exports/index.d.ts", | ||
"files": ["dist"], | ||
"scripts": { | ||
"test": "vitest run", | ||
"dev": "tsc -w", | ||
"build": "tsc --module es2020", | ||
"lint": "bun biome lint --apply .", | ||
"format": "biome format --write .", | ||
"check": "bun biome check --apply .", | ||
"changeset": "changeset", | ||
"changeset:public": "bun scripts/updateVersion.ts && bun build && changeset publish", | ||
"changeset:version": "changeset version && bun install --frozen-lockfile && bun scripts/updateVersion.ts", | ||
"docs:dev": "cd docs && bun run dev", | ||
"docs:build": "cd docs && bun run build", | ||
"docs:preview": "cd docs && bun run preview" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/effectai/effect-js.git" | ||
}, | ||
"keywords": ["efx", "AI", "blockchain", "microtasks"], | ||
"author": { | ||
"name": "Effect-AI", | ||
"url": "https://effect.network", | ||
"email": "[email protected]" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/effectai/effect-js/issues" | ||
}, | ||
"homepage": "https://github.com/effectai/effect-js#readme", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.7.0", | ||
"@changesets/changelog-github": "^0.4.5", | ||
"@changesets/cli": "^2.23.2", | ||
"@greymass/abi2core": "^2.0.1", | ||
"@types/dotenv": "^8.2.0", | ||
"dotenv": "^16.3.1", | ||
"typescript": "^5.4.3", | ||
"vitest": "^1.4.0" | ||
}, | ||
"dependencies": { | ||
"@wharfkit/antelope": "^1.0.7", | ||
"@wharfkit/session": "^1.2.8", | ||
"@wharfkit/wallet-plugin-privatekey": "^1.0.0", | ||
"ajv": "^8.12.0", | ||
"atomicassets": "^1.5.1", | ||
"idb-keyval": "^6.2.1", | ||
"node-localstorage": "^3.0.5" | ||
}, | ||
"trustedDependencies": ["@biomejs/biome"] | ||
"name": "@effectai/effect-js", | ||
"version": "2.0.0", | ||
"description": "Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))", | ||
"main": "./dist/exports/index.js", | ||
"module": "./dist/exports/index.js", | ||
"browser": "dist/exports/index.js", | ||
"types": "./dist/exports/index.d.ts", | ||
"files": ["dist"], | ||
"scripts": { | ||
"test": "vitest run", | ||
"dev": "tsc -w", | ||
"build": "tsc --module es2020", | ||
"lint": "bun biome lint --apply .", | ||
"format": "biome format --write .", | ||
"check": "bun biome check --apply .", | ||
"changeset": "changeset", | ||
"changeset:public": "bun scripts/updateVersion.ts && bun build && changeset publish", | ||
"changeset:version": "changeset version && bun install --frozen-lockfile && bun scripts/updateVersion.ts", | ||
"docs:dev": "cd docs && bun run dev", | ||
"docs:build": "cd docs && bun run build", | ||
"docs:preview": "cd docs && bun run preview" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/effectai/effect-js.git" | ||
}, | ||
"keywords": ["efx", "AI", "blockchain", "microtasks"], | ||
"author": { | ||
"name": "Effect-AI", | ||
"url": "https://effect.network", | ||
"email": "[email protected]" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/effectai/effect-js/issues" | ||
}, | ||
"homepage": "https://github.com/effectai/effect-js#readme", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.7.0", | ||
"@changesets/changelog-github": "^0.4.5", | ||
"@changesets/cli": "^2.23.2", | ||
"@greymass/abi2core": "^2.0.1", | ||
"@size-limit/preset-big-lib": "^11.1.2", | ||
"@types/dotenv": "^8.2.0", | ||
"dotenv": "^16.3.1", | ||
"typescript": "^5.4.3", | ||
"vitest": "^1.4.0" | ||
}, | ||
"dependencies": { | ||
"@wharfkit/antelope": "^1.0.7", | ||
"@wharfkit/session": "^1.2.8", | ||
"@wharfkit/wallet-plugin-privatekey": "^1.0.0", | ||
"ajv": "^8.12.0", | ||
"atomicassets": "^1.5.1", | ||
"idb-keyval": "^6.2.1", | ||
"node-localstorage": "^3.0.5" | ||
}, | ||
"trustedDependencies": ["@biomejs/biome"] | ||
} |