-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "codepull",
"version": "0.1.1",
"description": "Pull shared source code from a GitHub monorepo into your project.",
"type": "module",
"exports": {},
"bin": {
"codepull": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "biome check . && jsdoc-lint src && pnpm typecheck",
"check:fix": "biome check --write . && jsdoc-lint src && pnpm typecheck",
"prepack": "pnpm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sandrinodm/codepull.git"
},
"bugs": {
"url": "https://github.com/sandrinodm/codepull/issues"
},
"homepage": "https://github.com/sandrinodm/codepull#readme",
"keywords": [
"cli",
"monorepo",
"source-code",
"code-sharing",
"git"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"commander": "15.0.0",
"tar-stream": "3.2.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@types/node": "26.1.1",
"@types/tar-stream": "3.1.4",
"@vitest/coverage-v8": "4.1.10",
"jsdoc-lint": "0.4.0",
"release-it": "20.2.1",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}