-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "@datatruck/root",
"private": true,
"description": "Tool for do and managing backups",
"homepage": "https://github.com/swordev/datatruck#readme",
"bugs": {
"url": "https://github.com/swordev/datatruck/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/swordev/datatruck"
},
"license": "MIT",
"author": {
"name": "Juanra GM",
"email": "juanrgm724@gmail.com",
"url": "https://github.com/juanrgm"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm build:ts && pnpm build:schema",
"build:bin": "node ./scripts/build-bin.mjs",
"build:dist": "esbuild --bundle --platform=node --target=node20 ./packages/cli/lib/bin.js --outfile=dist/datatruck.js",
"build:schema": "node ./packages/cli/scripts/gen-schema.mjs && node ./packages/restic/scripts/gen-schema.mjs",
"build:ts": "tsc -b tsconfig.build.json --pretty",
"build:win-setup": "node ./scripts/build-win-setup.mjs",
"clean": "tsc -b tsconfig.build.json --clean",
"format": "prettier --cache -w .",
"format:check": "prettier --cache -c .",
"start": "node packages/datatruck/lib/bin.js",
"test": "vitest run",
"watch": "tsc -b tsconfig.build.json -w"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^20.19.11",
"@yao-pkg/pkg": "^6.6.0",
"esbuild": "^0.25.9",
"npm-check-updates": "^18.0.2",
"prettier": "3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-sort-json": "^4.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-json-schema": "^0.65.1",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"fast-folder-size",
"mongodb-memory-server"
],
"patchedDependencies": {
"smartwrap@2.0.2": "patches/smartwrap@2.0.2.patch",
"tty-table@4.2.3": "patches/tty-table@4.2.3.patch"
}
},
"engine": {
"node": ">=20.0.0"
}
}