-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.03 KB
/
package.json
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
{
"name": "@openrouter/character",
"version": "0.0.2",
"description": "A character utility library",
"type": "module",
"module": "./src/index.ts",
"types": "./src/index.ts",
"publishConfig": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm build"
},
"author": "L ❤️ ☮ ✋",
"contributors": [
"@louisgv"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenRouterTeam/character.git"
},
"license": "MIT",
"keywords": [
"character",
"AI",
"LLM"
],
"devDependencies": {
"png-chunks-extract": "1.0.0",
"png-chunk-text": "1.0.0",
"png-chunks-encode": "1.0.0",
"exifreader": "4.13.0",
"json5": "2.2.3",
"tsup": "7.1.0",
"typescript": "5.1.6",
"prettier": "3.0.0"
}
}