-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@cldmv/git-embedded",
"version": "1.1.6",
"description": "Manage embedded git repositories (anonymous gitlinks) without .gitmodules. Provides hooks that restore standard git-command ergonomics for embedded children while keeping the child's origin URL out of the public parent repo.",
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=22.12.0"
},
"author": {
"name": "Shinrai",
"company": "CLDMV",
"email": "git+npm@cldmv.net",
"url": "https://cldmv.net"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shinrai"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/CLDMV/git-embedded.git"
},
"bugs": {
"url": "https://github.com/CLDMV/git-embedded/issues"
},
"homepage": "https://github.com/CLDMV/git-embedded#readme",
"keywords": [
"git",
"gitlink",
"submodule",
"anonymous-submodule",
"embedded",
"embedded-repo",
"private",
"hooks",
"hooks-installer",
"gitmodules-free",
"reference-transaction",
"post-checkout",
"post-merge",
"post-rewrite",
"dispatcher",
"cli"
],
"files": [
"bin",
"src",
"hooks",
"messages",
"docs",
"README.md",
"LICENSE"
],
"bin": {
"git-embedded": "./bin/git-embedded.mjs"
},
"scripts": {
"start": "node bin/git-embedded.mjs",
"build:ci": "echo '✓ no build step'",
"test": "node tests/run-vitest.mjs",
"test:watch": "vitest --config .configs/vitest.config.mjs",
"coverage": "node tests/run-vitest.mjs --coverage-quiet",
"ci:coverage": "npm run coverage",
"lint": "eslint --config .configs/eslint.config.mjs .",
"lint:fix": "eslint --config .configs/eslint.config.mjs . --fix",
"format": "prettier --config .configs/.prettierrc --write .",
"format:check": "prettier --config .configs/.prettierrc --check .",
"build": "echo 'no build step - stopgap for CI coverage-badge; see tracking issue'"
},
"dependencies": {
"@cldmv/slothlet": "^3.7.0",
"@cldmv/wisp": "^1.0.1",
"chalk": "^6.0.0",
"commander": "^15.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0"
},
"devDependencies": {
"@cldmv/vitest-runner": "^1.2.0",
"@eslint/js": "^9.18.0",
"@eslint/json": "^2.0.1",
"@eslint/markdown": "^8.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"globals": "^17.7.0",
"prettier": "^3.4.2",
"vitest": "^4.1.10"
}
}