-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 901 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
38
39
40
41
42
{
"name": "pi-models",
"version": "0.2.9",
"description": "Quality-of-life Pi extension for browsing models by provider or family",
"main": "pi-models.ts",
"keywords": [
"pi",
"pi-extension",
"models",
"llm",
"pi-package"
],
"author": "Apostolos Mantzaris",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apmantza/pi-models.git"
},
"files": [
"pi-models.ts",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"changelog:check": "node scripts/changelog-release.mjs --check",
"changelog:release": "node scripts/changelog-release.mjs",
"changelog:extract": "node scripts/changelog-extract.mjs"
},
"devDependencies": {
"@types/node": "^20.19.39",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"pi": {
"extensions": [
"./pi-models.ts"
]
}
}