-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nestjs-libsql-client",
"version": "1.0.2",
"description": "NestJS TURSO libsql integration",
"keywords": [
"nestjs",
"turso",
"libsql-client-ts",
"libsql-client",
"module",
"turso-db",
"database",
"postgres",
"sql",
"sqlite"
],
"author": "Adrián Martínez Jiménez <adrianmjim199434@gmail.com>",
"homepage": "https://github.com/adrianmjim/nestjs-libsql-client#readme",
"license": "ISC",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmjim/nestjs-libsql-client.git"
},
"bugs": {
"url": "https://github.com/adrianmjim/nestjs-libsql-client/issues"
},
"devDependencies": {
"@eslint/compat": "1.2.7",
"@eslint/js": "9.21.0",
"@types/node": "22.13.9",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"@vitest/coverage-v8": "3.0.7",
"@vitest/eslint-plugin": "1.1.36",
"eslint": "9.21.0",
"eslint-import-resolver-typescript": "3.8.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0",
"vitest": "3.0.7"
},
"peerDependencies": {
"@libsql/client": "^0.14.0",
"@nestjs/common": "^10.2.7 || ^9.4.0 || ^11.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"format:check": "prettier --check ./src/**/*.ts",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"publish:package": "pnpm publish",
"test": "TZ=$npm_package_config_TZ vitest run",
"test:coverage": "pnpm run test --coverage",
"test:uncommitted": "pnpm run test --changed HEAD"
}
}