-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"version": "1.0.21",
"name": "river.ts",
"description": "Composable, declarative, and type-safe SSE Server-Sent Events",
"repository": {
"type": "git",
"url": "git+https://github.com/Bewinxed/river.ts.git"
},
"homepage": "https://me.bewinxed.com/projects/river.ts",
"author": {
"name": "Bewinxed",
"email": "[email protected]",
"url": "https://me.bewinxed.com"
},
"license": "MIT",
"source": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bunx unbuild && cat ./package.json | grep -v '\"private\":' > dist/package.json && cp README.md dist/README.md",
"watch": "bunx unbuild watch",
"test": "bun test",
"bump": "npm version patch --no-git-tag-version",
"pub": "cd ./dist && npm publish"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./index.d.ts"
},
"./client": {
"import": "./client/index.mjs",
"require": "./client/index.cjs",
"types": "./client/index.d.ts"
},
"./server": {
"import": "./server/index.mjs",
"require": "./server/index.cjs",
"types": "./server/index.d.ts"
}
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^20.14.2"
},
"dependencies": {}
}