-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.94 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.94 KB
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
52
53
54
55
56
57
{
"name": "hyperstar-monorepo",
"version": "0.1.0",
"private": true,
"description": "Server-driven UI framework for real-time web apps",
"author": {
"name": "Jordan Howlett",
"email": "jordan@howlett.io"
},
"homepage": "https://github.com/StreamUI/hyperstar",
"repository": {
"type": "git",
"url": "git+https://github.com/StreamUI/hyperstar.git"
},
"license": "MIT",
"workspaces": [
"packages/hyperstar",
"packages/cli",
"packages/server"
],
"scripts": {
"dev": "bun --hot examples/counter.ts",
"check": "bunx tsc --noEmit",
"build:client": "bun build packages/hyperstar-client/src/index.ts --outfile=packages/hyperstar/dist/hyperstar.min.js --minify --target=browser",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run check && bun run build:client && changeset publish && bun run release:github",
"release:github": "git push --tags && gh release create $(git describe --tags --abbrev=0) --generate-notes",
"example:counter": "bun --hot examples/counter.ts",
"example:todos": "bun --hot examples/todos.ts",
"example:chat": "bun --hot examples/chat-room.ts",
"example:llm": "bun --hot examples/llm-streaming.ts",
"example:poll": "bun --hot examples/poll.ts",
"example:game": "bun --hot examples/grid-game.ts",
"example:fps": "bun --hot examples/fps.ts",
"example:notes": "bun --hot examples/persistent-notes.ts",
"example:sqlite": "bun --hot examples/sqlite-notes.ts",
"example:head": "bun --hot examples/head-demo.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"hyperstar": "workspace:*"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@kitajs/html": "^4.2.11",
"@kitajs/ts-html-plugin": "^4.1.3",
"@preact/signals-core": "^1.12.1",
"@types/bun": "latest",
"@types/tar-stream": "^3.1.4",
"effect": "^3.19.14",
"idiomorph": "^0.7.4",
"typescript": "^5.9.3"
}
}