-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.55 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
{
"name": "@saykit/config",
"version": "0.0.0",
"description": "CLI and configuration tooling for saykit",
"keywords": [
"cli",
"config",
"i18n",
"saykit"
],
"homepage": "https://github.com/k0d13/saykit#readme",
"bugs": {
"url": "https://github.com/k0d13/saykit/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/k0d13/saykit.git",
"directory": "packages/config"
},
"bin": {
"saykit": "./dist/commands/index.mjs"
},
"files": [
"dist",
"!dist/**/*.map"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./features/loader": {
"types": "./dist/features/loader/index.d.mts",
"default": "./dist/features/loader/index.mjs"
},
"./features/messages": {
"types": "./dist/features/messages/index.d.mts",
"default": "./dist/features/messages/index.mjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"check": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsdown",
"prepack": "pnpm build"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.3",
"js-sha256": "^0.11.1",
"picomatch": "^4.0.4",
"zod": "^4.4.1"
},
"devDependencies": {
"@types/picomatch": "^4.0.3"
},
"peerDependencies": {
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}