-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "liteflow",
"version": "1.1.0",
"description": "A lightweight SQLite-based workflow tracker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"liteflow": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "ts-node src/__benchmarks__/index.ts",
"release": "release-it"
},
"keywords": [
"workflow",
"sqlite",
"tracker",
"typescript"
],
"author": "cond",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^8.6.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"knex": "^3.1.0",
"sqlite3": "^5.1.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"benchmark": "^2.1.4",
"eslint": "^8.56.0",
"release-it": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.8.3",
"vitest": "^3.0.0"
}
}