-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 2.42 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
{
"name": "express-sqlite",
"version": "0.1.6",
"description": "SQLite session store for Express.js",
"keywords": [
"connect",
"express",
"session",
"sql",
"sqlite",
"sqlite3",
"better-sqlite3"
],
"homepage": "https://github.com/SBence/express-sqlite#readme",
"bugs": {
"url": "https://github.com/SBence/express-sqlite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SBence/express-sqlite.git"
},
"license": "MIT",
"author": {
"name": "SBence"
},
"type": "module",
"files": [
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "rm -rf dist && concurrently \"node esbuild.config.js\" \"dts-bundle-generator --no-banner --project lib/tsconfig.json -o dist/index.d.ts lib/src/index.ts\"",
"check": "concurrently \"$npm_execpath run lint:eslint\" \"$npm_execpath run lint:types:lib\" \"$npm_execpath run lint:types:test\" \"$npm_execpath run lint:formatting\" \"$npm_execpath run test\"",
"lint": "concurrently \"$npm_execpath run lint:eslint\" \"$npm_execpath run lint:types:lib\" \"$npm_execpath run lint:types:test\" \"$npm_execpath run lint:formatting\"",
"lint:eslint": "eslint .",
"lint:formatting": "prettier --check .",
"lint:fix:formatting": "prettier --write .",
"lint:types": "concurrently \"$npm_execpath run check-types:lib\" \"$npm_execpath run check-types:test\"",
"lint:types:lib": "tsc --project lib --noEmit",
"lint:types:test": "tsc --project test --noEmit",
"prepack": "$npm_execpath run build",
"test": "vitest run --coverage"
},
"dependencies": {
"better-sqlite3": "^12.4.1",
"express-session": "^1.18.2"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/node": "^22.18.10",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.25.11",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"express": "^5.1.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}