-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "kysely-zotero-dialect",
"version": "0.2.0",
"description": "Use kysely within zotero plugins",
"main": "src/index.ts",
"repository": {
"url": "https://github.com/p2p-ld/kysely-zotero-dialect.git"
},
"author": "sneakers-the-rat <sneakers-the-rat@protonmail.com>",
"license": "EUPL-1.2",
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.7.5",
"better-sqlite3": "^11.5.0",
"chai": "^5.1.2",
"gts": "^6.0.2",
"kysely": "^0.27.4",
"kysely-codegen": "^0.17.0",
"mocha": "^11.0.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"zotero-plugin-scaffold": "==0.2.0-beta.10",
"zotero-types": "^3.0.1"
},
"peerDependencies": {
"kysely": "^0.27.4"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"generate-models": "python scripts/generate_models.py",
"test": "zotero-plugin test"
}
}