-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.8 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.8 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
{
"name": "@eserstack/codebase",
"version": "4.1.56",
"type": "module",
"exports": {
".": "./main.ts",
"./mod": "./mod.ts",
"./module": "./module.ts",
"./directive-analysis": "./directive-analysis.ts",
"./git": "./git.ts",
"./package": "./package/mod.ts",
"./scaffolding": "./scaffolding/mod.ts",
"./validation": "./validation/mod.ts",
"./workspace-discovery": "./workspace-discovery.ts",
"./validate-circular-deps": "./validate-circular-deps.ts",
"./validate-mod-exports": "./validate-mod-exports.ts",
"./validate-export-names": "./validate-export-names.ts",
"./validate-docs": "./validate-docs.ts",
"./validate-licenses": "./validate-licenses.ts",
"./validate-package-configs": "./validate-package-configs.ts",
"./versions": "./versions.ts",
"./gh": "./gh.ts",
"./gh-contributors": "./gh-contributors.ts",
"./release-tag": "./release-tag.ts",
"./release-notes": "./release-notes.ts",
"./changelog-gen": "./changelog-gen.ts",
"./commitmsg": "./commitmsg.ts",
"./release": "./release.ts",
"./lint-plugin": "./lint-plugin.ts",
"./cli-support": "./cli-support.ts",
"./file-tool": "./file-tool.ts",
"./file-tools-shared": "./file-tools-shared.ts",
"./validate-eof": "./validate-eof.ts",
"./validate-trailing-whitespace": "./validate-trailing-whitespace.ts",
"./validate-bom": "./validate-bom.ts",
"./validate-line-endings": "./validate-line-endings.ts",
"./validate-large-files": "./validate-large-files.ts",
"./validate-case-conflict": "./validate-case-conflict.ts",
"./validate-merge-conflict": "./validate-merge-conflict.ts",
"./validate-json": "./validate-json.ts",
"./validate-toml": "./validate-toml.ts",
"./validate-yaml": "./validate-yaml.ts",
"./validate-symlinks": "./validate-symlinks.ts",
"./validate-shebangs": "./validate-shebangs.ts",
"./validate-secrets": "./validate-secrets.ts",
"./validate-filenames": "./validate-filenames.ts",
"./validate-submodules": "./validate-submodules.ts",
"./validate-commit-msg": "./validate-commit-msg.ts",
"./install": "./install.ts"
},
"dependencies": {
"@eserstack/ai": "workspace:*",
"@eserstack/config": "workspace:*",
"@eserstack/primitives": "workspace:*",
"@eserstack/fp": "workspace:*",
"@eserstack/functions": "workspace:*",
"@eserstack/shell": "workspace:*",
"@eserstack/standards": "workspace:*",
"@std/cli": "npm:@jsr/std__cli@^1.0.25",
"@std/fmt": "npm:@jsr/std__fmt@^1.0.8",
"@std/fs": "npm:@jsr/std__fs@^1.0.21",
"@std/path": "npm:@jsr/std__path@^1.1.4",
"@std/semver": "npm:@jsr/std__semver@^1.0.7",
"@std/tar": "npm:@jsr/std__tar@^0.1.9",
"yaml": "^2",
"octokit": "^5.0.5"
},
"devDependencies": {
"@std/assert": "npm:@jsr/std__assert@^1.0.16"
}
}