-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.11 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.11 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
{
"name": "@lenml/char-card-reader",
"version": "1.1.1",
"description": "SillyTavern character card info reader",
"main": "dist/main.js",
"module": "dist/main.mjs",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js"
},
"./src/main.ts": {
"default": "./src/main.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup --minify",
"test": "jest",
"dev": "tsx watch",
"prepublish": "pnpm build",
"build:docs": "typedoc --skipErrorChecking"
},
"files": [
"dist",
"src"
],
"keywords": [
"character",
"AI",
"LLM",
"roleplay",
"SillyTavern",
"酒馆"
],
"author": "lenml",
"license": "AGPL-3.0-only",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.52.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.18",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}