-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
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
{
"name": "passbolt-backups",
"module": "index.ts",
"type": "module",
"private": true,
"version": "0.6.2",
"scripts": {
"clean": "rm -rf node_modules",
"test": "bun test",
"typecheck": "tsc --noEmit --skipLibCheck --esModuleInterop --target esnext --moduleResolution bundler --module esnext --strict ./src/**/*.ts",
"debug": "bun run ./src/index.ts",
"compile": "bun run ./scripts/compile",
"start": "./build/bin/passbolt-backups"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@cleverjs/cli": "^1.1.8",
"@date-fns/utc": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"flexbuf": "^1.5.1",
"low-level": "^1.2.5"
}
}