-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.83 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
{
"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",
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r --filter './packages/*' build",
"build:web": "pnpm build && pnpm --filter ./examples/web build",
"release": "pnpm release:ci",
"release:ci": "pnpm build && 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",
"test": "vitest run",
"test:watch": "vitest",
"clean": "pnpm -r exec rm -rf dist && pnpm -r exec rm -rf .turbo",
"setup:hooks": "./scripts/setup-hooks.sh"
},
"pnpm": {
"overrides": {
"pixi.js": "6.5.10"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.37.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"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",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}