flash-story-app 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "flash-story-app",
3
+ "version": "1.0.0",
4
+ "description": "FlashStory — one npx command runs the whole shot-editor (B/S, WEB.md). Local-first: data lives under ~/.flashstory/data.",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "bin": {
8
+ "flash-story-app": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist/*.js",
12
+ "static/**",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "scripts": {
20
+ "dev": "tsx watch src/index.ts",
21
+ "start": "node dist/index.js",
22
+ "build": "vite build --config vite.build.config.ts",
23
+ "embed:web": "node scripts/embed-web.mjs",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "compile": "tsc --noEmit",
27
+ "release:check": "npm run compile && npm test && npm run embed:web && npm run build && npm pack --dry-run",
28
+ "prepublishOnly": "npm run release:check"
29
+ },
30
+ "dependencies": {
31
+ "@hono/node-server": "^1.13.7",
32
+ "hono": "^4.6.14",
33
+ "ws": "^8.18.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^22.10.0",
37
+ "@types/ws": "^8.18.1",
38
+ "tsx": "^4.19.2",
39
+ "typescript": "^5.7.2",
40
+ "vite": "^6.3.5",
41
+ "vitest": "^2.1.8"
42
+ }
43
+ }