@musnows/scriverse 0.2.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvC,OAAO,CAAC,QAAQ,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@musnows/scriverse",
3
+ "version": "0.2.0",
4
+ "description": "Command-line client for the Scriverse long-form fiction workspace",
5
+ "license": "MIT",
6
+ "author": "musnows",
7
+ "homepage": "https://scriverse.top/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/musnows/Scriverse.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/musnows/Scriverse/issues"
14
+ },
15
+ "keywords": [
16
+ "scriverse",
17
+ "novel",
18
+ "writing",
19
+ "cli"
20
+ ],
21
+ "type": "module",
22
+ "files": [
23
+ "dist/cli.js",
24
+ "dist/cli.js.map",
25
+ "dist/cli-core.js",
26
+ "dist/cli-core.js.map",
27
+ "dist/cli-contract.js",
28
+ "dist/cli-contract.js.map"
29
+ ],
30
+ "bin": {
31
+ "scriverse": "dist/cli.js"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "engines": {
37
+ "node": ">=22.5.0"
38
+ },
39
+ "scripts": {
40
+ "dev": "tsx watch src/server.ts",
41
+ "cli": "tsx src/cli.ts",
42
+ "clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
43
+ "build": "npm run clean && tsc -p tsconfig.build.json",
44
+ "prepack": "npm run build",
45
+ "start": "node dist/server.js",
46
+ "typecheck": "tsc -p tsconfig.json --noEmit",
47
+ "test": "vitest run --maxWorkers=1",
48
+ "test:unit": "vitest run tests/unit",
49
+ "test:integration": "vitest run tests/integration",
50
+ "test:system": "vitest run tests/system",
51
+ "test:e2e:real": "tsx tests/e2e/real-all-features.ts",
52
+ "test:e2e:cli": "npm run build && tsx tests/e2e/real-cli.ts",
53
+ "test:e2e:ai-tools": "tsx tests/e2e/real-ai-agent-tools.ts",
54
+ "test:e2e:browser-fixture": "tsx tests/e2e/browser-ai-fixture.ts",
55
+ "check": "npm run typecheck && npm test && npm run build"
56
+ },
57
+ "dependencies": {
58
+ "express": "^5.1.0",
59
+ "mammoth": "^1.10.0",
60
+ "multer": "^2.0.2",
61
+ "zod": "^4.1.12"
62
+ },
63
+ "devDependencies": {
64
+ "@types/express": "^5.0.3",
65
+ "@types/multer": "^2.0.0",
66
+ "@types/node": "^24.10.0",
67
+ "@types/supertest": "^6.0.3",
68
+ "jszip": "^3.10.1",
69
+ "supertest": "^7.1.4",
70
+ "tsx": "^4.20.6",
71
+ "typescript": "^5.9.3",
72
+ "vitest": "^4.0.8"
73
+ }
74
+ }