-
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
a3510ae
commit cbdf846
Showing
8 changed files
with
245 additions
and
231 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
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 |
---|---|---|
|
@@ -343,6 +343,7 @@ | |
packages.pnpm = pkgs.writeShellScriptBin "pnpm" '' | ||
#!${pkgs.bash}/bin/bash | ||
exec ${pkgs.nodejs_20}/bin/node ${pkgs.nodejs_20}/bin/corepack [email protected] "$@" | ||
''; }; | ||
''; | ||
}; | ||
}; | ||
} |
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,25 +1,26 @@ | ||
{ | ||
"name": "@holochain-open-dev/common-dev", | ||
"private": true, | ||
"type": "module", | ||
"workspaces": [ | ||
"packages/utils", | ||
"packages/core-types", | ||
"packages/elements", | ||
"packages/stores", | ||
"packages/signals", | ||
"sites/*" | ||
], | ||
"engines": { | ||
"npm": ">=7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@eslint/js": "^8.0.0", | ||
"eslint": "^8.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"prettier": "^3.2.5", | ||
"typescript-eslint": "^7.7.0", | ||
"typescript": "^5.4.5" | ||
} | ||
"name": "@holochain-open-dev/common-dev", | ||
"private": true, | ||
"type": "module", | ||
"workspaces": [ | ||
"packages/utils", | ||
"packages/core-types", | ||
"packages/elements", | ||
"packages/stores", | ||
"packages/signals", | ||
"sites/*" | ||
], | ||
"engines": { | ||
"npm": ">=7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@eslint/js": "^8.0.0", | ||
"eslint": "^8.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"prettier": "^3.2.5", | ||
"typescript-eslint": "^7.7.0", | ||
"typescript": "^5.4.5" | ||
}, | ||
"packageManager": "[email protected]+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390" | ||
} |
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,33 +1,35 @@ | ||
{ | ||
"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-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" | ||
} |
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,48 +1,50 @@ | ||
{ | ||
"name": "@holochain-open-dev/elements", | ||
"version": "0.300.0-rc.0", | ||
"description": "Common utilities and elements 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": { | ||
"start": "vite --open", | ||
"build": "npm run lint && tsc && npm run analyze -- --exclude dist", | ||
"lint": "eslint src", | ||
"analyze": "cem analyze --litelement" | ||
}, | ||
"dependencies": { | ||
"@holo-host/identicon": "^0.1.0", | ||
"@holochain/client": "^0.17.0-rc", | ||
"@lit/localize": "^0.12.0", | ||
"@mdi/js": "^7.1.96", | ||
"@shoelace-style/shoelace": "^2.11.0", | ||
"lit": "^3.0.2", | ||
"prosemirror-commands": "^1.5.2", | ||
"prosemirror-keymap": "^1.2.2", | ||
"prosemirror-state": "^1.4.3", | ||
"prosemirror-view": "^1.31.3" | ||
}, | ||
"devDependencies": { | ||
"@custom-elements-manifest/analyzer": "^0.4.17", | ||
"concurrently": "^7.0.0", | ||
"typescript": "^4.9.0", | ||
"vite": "^4.2.0", | ||
"vite-plugin-checker": "^0.5.5" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module", | ||
"customElements": "custom-elements.json" | ||
} | ||
"name": "@holochain-open-dev/elements", | ||
"version": "0.300.0-rc.0", | ||
"description": "Common utilities and elements 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": { | ||
"start": "vite --open", | ||
"build": "npm run lint && tsc && npm run analyze -- --exclude dist", | ||
"lint": "eslint src", | ||
"analyze": "cem analyze --litelement" | ||
}, | ||
"dependencies": { | ||
"@holo-host/identicon": "^0.1.0", | ||
"@holochain/client": "^0.17.0-rc", | ||
"@lit/localize": "^0.12.0", | ||
"@mdi/js": "^7.1.96", | ||
"@shoelace-style/shoelace": "^2.11.0", | ||
"lit": "^3.0.2", | ||
"prosemirror-commands": "^1.5.2", | ||
"prosemirror-keymap": "^1.2.2", | ||
"prosemirror-state": "^1.4.3", | ||
"prosemirror-view": "^1.31.3" | ||
}, | ||
"devDependencies": { | ||
"@custom-elements-manifest/analyzer": "^0.4.17", | ||
"concurrently": "^7.0.0", | ||
"typescript": "^4.9.0", | ||
"vite": "^4.2.0", | ||
"vite-plugin-checker": "^0.5.5" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"type": "module", | ||
"customElements": "custom-elements.json" | ||
} |
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,40 +1,43 @@ | ||
{ | ||
"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-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" | ||
} |
Oops, something went wrong.