-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1016 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1016 Bytes
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
{
"name": "groa",
"version": "0.1.0",
"description": "テキストから人格を抽出し、その人物として語らせ、会話させるペルソナ再現ツール",
"private": true,
"license": "MIT",
"author": "ivgtr",
"repository": {
"type": "git",
"url": "https://github.com/ivgtr/groa.git"
},
"bugs": {
"url": "https://github.com/ivgtr/groa/issues"
},
"homepage": "https://github.com/ivgtr/groa#readme",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"groa": "node packages/cli/dist/main.js",
"build": "tsc --build packages/*/tsconfig.json",
"test": "vitest run",
"lint": "eslint packages/*/src/"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.0",
"happy-dom": "^20.8.4",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vitest": "^3.0.0"
}
}