-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
c9ab0e8
commit 0dce5f2
Showing
7 changed files
with
135 additions
and
143 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,35 +1,32 @@ | ||
{ | ||
"name": "@holochain-open-dev/core-types", | ||
"version": "0.300.0-rc.0", | ||
"description": "Typescript types for holochain core", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*" | ||
], | ||
"scripts": { | ||
"lint": "eslint src", | ||
"build": "npm run lint && tsc", | ||
"publish": "npm run build && npm publish --tag dev" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/holochain-open-dev/core-types.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@holochain/client": "^0.17.0-rc" | ||
}, | ||
"devDependencies": { | ||
"@types/libsodium-wrappers": "^0.7.10", | ||
"@types/node": "^16.11.10", | ||
"@types/ws": "^8.2.0", | ||
"typescript": "^5.4.0" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/holochain-open-dev/core-types/issues" | ||
}, | ||
"homepage": "https://github.com/holochain-open-dev/core-types#readme" | ||
} | ||
"name": "@holochain-open-dev/core-types", | ||
"version": "0.300.0", | ||
"description": "Typescript types for holochain core", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": ["dist/**/*"], | ||
"scripts": { | ||
"lint": "eslint src", | ||
"build": "npm run lint && tsc" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/holochain-open-dev/core-types.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@holochain/client": "^0.17.0" | ||
}, | ||
"devDependencies": { | ||
"@types/libsodium-wrappers": "^0.7.10", | ||
"@types/node": "^16.11.10", | ||
"@types/ws": "^8.2.0", | ||
"typescript": "^5.4.0" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/holochain-open-dev/core-types/issues" | ||
}, | ||
"homepage": "https://github.com/holochain-open-dev/core-types#readme" | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"name": "@holochain-open-dev/elements", | ||
"version": "0.300.0-rc.3", | ||
"version": "0.300.0", | ||
"description": "Common utilities and elements to build Holochain web applications", | ||
"author": "[email protected]", | ||
"main": "dist/index.js", | ||
|
@@ -23,7 +23,7 @@ | |
}, | ||
"dependencies": { | ||
"@holo-host/identicon": "^0.1.0", | ||
"@holochain/client": "^0.17.0-rc", | ||
"@holochain/client": "^0.17.0", | ||
"@lit/localize": "^0.12.0", | ||
"@lit-labs/router": "^0.1.3", | ||
"@mdi/js": "^7.1.96", | ||
|
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,43 +1,40 @@ | ||
{ | ||
"name": "@holochain-open-dev/signals", | ||
"version": "0.300.0-rc.3", | ||
"description": "Holochain async-signals to build reusable holochain-open-dev modules", | ||
"author": "[email protected]", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./dist/*": "./dist/*" | ||
}, | ||
"scripts": { | ||
"start": "vite --open", | ||
"build": "npm run lint && tsc", | ||
"lint": "eslint src", | ||
"test": "vitest run", | ||
"prepublish": "npm run build" | ||
}, | ||
"dependencies": { | ||
"@holochain-open-dev/utils": "^0.300.0-rc.0", | ||
"@holochain/client": "^0.17.0-rc", | ||
"@shoelace-style/shoelace": "^2.11.2", | ||
"async-signals": "^0.1.10", | ||
"lit-signal-watcher": "^0.1.1", | ||
"signal-polyfill": "^0.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash-es": "^4.17.6", | ||
"js-base64": "^3.7.7", | ||
"typescript": "^5.4.0", | ||
"vite": "^4.1.1", | ||
"vitest": "^1.5.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module" | ||
} | ||
"name": "@holochain-open-dev/signals", | ||
"version": "0.300.0", | ||
"description": "Holochain async-signals to build reusable holochain-open-dev modules", | ||
"author": "[email protected]", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": ["dist", "src"], | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./dist/*": "./dist/*" | ||
}, | ||
"scripts": { | ||
"start": "vite --open", | ||
"build": "npm run lint && tsc", | ||
"lint": "eslint src", | ||
"test": "vitest run", | ||
"prepublish": "npm run build" | ||
}, | ||
"dependencies": { | ||
"@holochain-open-dev/utils": "^0.300.0", | ||
"@holochain/client": "^0.17.0", | ||
"@shoelace-style/shoelace": "^2.11.2", | ||
"async-signals": "^0.1.10", | ||
"lit-signal-watcher": "^0.1.1", | ||
"signal-polyfill": "^0.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash-es": "^4.17.6", | ||
"js-base64": "^3.7.7", | ||
"typescript": "^5.4.0", | ||
"vite": "^4.1.1", | ||
"vitest": "^1.5.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module" | ||
} |
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,47 +1,45 @@ | ||
{ | ||
"name": "@holochain-open-dev/utils", | ||
"version": "0.300.0-rc.0", | ||
"description": "Common utilities to build Holochain web applications", | ||
"author": "[email protected]", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/holochain-open-dev/common.git" | ||
}, | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./dist/*": "./dist/*" | ||
}, | ||
"scripts": { | ||
"build": "npm run lint && tsc --incremental", | ||
"build:watch": "tsc --watch --preserveWatchOutput", | ||
"lint": "eslint src", | ||
"test": "vitest run" | ||
}, | ||
"dependencies": { | ||
"@holochain/client": "^0.17.0-rc", | ||
"@msgpack/msgpack": "^2.8.0", | ||
"blakejs": "^1.2.1", | ||
"emittery": "^1.0.1", | ||
"lodash-es": "^4.17.21", | ||
"sort-keys": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash-es": "^4.17.6", | ||
"concurrently": "^7.0.0", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^4.4.3", | ||
"vite": "^4.1.1", | ||
"vitest": "^1.4.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module", | ||
"customElements": "custom-elements.json" | ||
} | ||
"name": "@holochain-open-dev/utils", | ||
"version": "0.300.0", | ||
"description": "Common utilities to build Holochain web applications", | ||
"author": "[email protected]", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": ["dist"], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/holochain-open-dev/common.git" | ||
}, | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./dist/*": "./dist/*" | ||
}, | ||
"scripts": { | ||
"build": "npm run lint && tsc --incremental", | ||
"build:watch": "tsc --watch --preserveWatchOutput", | ||
"lint": "eslint src", | ||
"test": "vitest run" | ||
}, | ||
"dependencies": { | ||
"@holochain/client": "^0.17.0", | ||
"@msgpack/msgpack": "^2.8.0", | ||
"blakejs": "^1.2.1", | ||
"emittery": "^1.0.1", | ||
"lodash-es": "^4.17.21", | ||
"sort-keys": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash-es": "^4.17.6", | ||
"concurrently": "^7.0.0", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^4.4.3", | ||
"vite": "^4.1.1", | ||
"vitest": "^1.4.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module", | ||
"customElements": "custom-elements.json" | ||
} |