-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "fastify-sqlite-typed",
"version": "5.0.2",
"description": "Fastify-sqlite-plugin",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Yoav gal",
"license": "MIT",
"homepage": "https://github.com/yoav0gal/fastify-sqlite-typed",
"bugs": {
"url": "https://github.com/yoav0gal/fastify-sqlite-typed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yoav0gal/fastify-sqlite-typed"
},
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "npm run build",
"publish": "npm publish --access public",
"build": "tsc",
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"unit": "node --test"
},
"keywords": [],
"dependencies": {
"fastify-plugin": "^5.0.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^20.4.4",
"fastify": "^5.2.1",
"fastify-tsconfig": "^2.0.0",
"standard": "^17.0.0",
"ts-standard": "^12.0.1",
"tsd": "^0.28.0",
"typescript": "^5.2.2"
},
"tsd": {
"directory": "test"
}
}