Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit 0c620dd

Browse files
committed
copy jsr.json to package.json
1 parent 9551826 commit 0c620dd

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
- run: make build
6767
- working-directory: ./js
6868
run: |
69+
# jsr and npm don't support links
70+
cp jsr.json package.json
6971
npx jsr publish --allow-slow-types
7072
npm publish --provenance --access public
7173
env:

js/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pkg*/
22
docs
3-
deno.lock
3+
deno.lock
4+
package.json

js/package.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

js/package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@pulsebeam/server",
3+
"version": "0.0.27",
4+
"license": "Apache-2.0",
5+
"author": "Lukas Herman [email protected]",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/PulseBeamDev/pulsebeam-core.git"
9+
},
10+
"homepage": "https://pulsebeam.dev",
11+
"nodeModulesDir": "auto",
12+
"type": "module",
13+
"exports": {
14+
".": "./pkg-experimental-nodejs-module/pulsebeam_core.js",
15+
"./node": "./pkg-experimental-nodejs-module/pulsebeam_core.js",
16+
"./deno": "./pkg-deno/pulsebeam_core.js",
17+
"./workerd": "./pkg-workerd/pulsebeam_core.js"
18+
},
19+
"publish": {
20+
"include": [
21+
"pkg-experimental-nodejs-module",
22+
"pkg-deno",
23+
"pkg-workerd",
24+
"README.md",
25+
"LICENSE",
26+
"jsr.json"
27+
]
28+
},
29+
"files": [
30+
"pkg-experimental-nodejs-module",
31+
"pkg-deno",
32+
"pkg-workerd",
33+
"README.md",
34+
"LICENSE",
35+
"package.json"
36+
]
37+
}

0 commit comments

Comments
 (0)