-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "charivo",
"version": "0.0.0",
"private": true,
"description": "A modular Live2D + LLM framework for interactive character experiences",
"keywords": [
"live2d",
"llm",
"ai",
"character",
"chatbot",
"tts",
"animation",
"typescript",
"framework"
],
"homepage": "https://github.com/zeikar/charivo#readme",
"repository": {
"type": "git",
"url": "https://github.com/zeikar/charivo.git"
},
"bugs": {
"url": "https://github.com/zeikar/charivo/issues"
},
"author": {
"name": "Zeikar",
"url": "https://github.com/zeikar"
},
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.25.0",
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r --filter './packages/*' build",
"build:web": "pnpm build && pnpm --filter ./examples/web build",
"dev:web": "pnpm build && pnpm --filter ./examples/web dev",
"demo:gif": "node ./scripts/capture-demo-gif.mjs",
"demo:mp4": "node ./scripts/capture-demo-mp4.mjs",
"verify": "pnpm build && pnpm test && pnpm typecheck && pnpm lint && pnpm format:check",
"verify:ci": "pnpm build && pnpm typecheck && pnpm lint && pnpm format:check",
"pack:check": "node ./scripts/check-packages.mjs",
"release": "pnpm release:ci",
"release:ci": "pnpm verify && pnpm pack:check && changeset publish",
"changeset": "changeset",
"version": "changeset version",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r --parallel typecheck && pnpm typecheck:tests",
"typecheck:tests": "tsc -p tsconfig.test.json && tsc -p packages/render-live2d/tsconfig.test.json",
"test": "vitest run",
"test:live-bootstrap": "vitest run --config vitest.live.config.ts tests/live-realtime",
"test:live-llm": "vitest run --config vitest.live.config.ts tests/live-llm",
"test:live-stt": "vitest run --config vitest.live.config.ts tests/live-stt",
"test:live-tts": "vitest run --config vitest.live.config.ts tests/live-tts",
"test:webrtc": "playwright test -c playwright.webrtc.config.ts",
"test:gemini-live": "playwright test -c playwright.gemini-live.config.ts",
"test:voice": "playwright test -c playwright.voice.config.ts",
"test:cascade": "playwright test -c playwright.cascade.config.ts",
"test:cascade:gemini": "CASCADE_PROVIDER=gemini playwright test -c playwright.cascade.config.ts",
"test:streaming-stt": "playwright test -c playwright.streaming-stt.config.ts",
"test:streaming-stt:gemini": "STREAMING_STT=gemini playwright test -c playwright.streaming-stt.config.ts",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"clean": "pnpm -r exec rm -rf dist && pnpm -r exec rm -rf .turbo",
"setup:hooks": "./scripts/setup-hooks.sh"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.59.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^24.1.3",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^5.4.20",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11.0.0"
}
}