@optique/config 0.10.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +102 -0
- package/dist/index-CZZEDay7.d.cts +167 -0
- package/dist/index-DiDpcijz.d.ts +167 -0
- package/dist/index.cjs +8 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/run.cjs +114 -0
- package/dist/run.d.cts +79 -0
- package/dist/run.d.ts +79 -0
- package/dist/run.js +114 -0
- package/dist/src-DVH5fJU9.cjs +295 -0
- package/dist/src-iXO5MxwN.js +231 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@optique/config",
|
|
3
|
+
"version": "0.10.0-dev.0",
|
|
4
|
+
"description": "Configuration file support for Optique with Standard Schema validation",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"CLI",
|
|
7
|
+
"command-line",
|
|
8
|
+
"commandline",
|
|
9
|
+
"parser",
|
|
10
|
+
"config",
|
|
11
|
+
"configuration",
|
|
12
|
+
"standard-schema",
|
|
13
|
+
"validation"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Hong Minhee",
|
|
18
|
+
"email": "hong@minhee.org",
|
|
19
|
+
"url": "https://hongminhee.org/"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://optique.dev/",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/dahlia/optique.git",
|
|
25
|
+
"directory": "packages/config/"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/dahlia/optique/issues"
|
|
29
|
+
},
|
|
30
|
+
"funding": [
|
|
31
|
+
"https://github.com/sponsors/dahlia"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20.0.0",
|
|
35
|
+
"bun": ">=1.2.0",
|
|
36
|
+
"deno": ">=2.3.0"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist/",
|
|
40
|
+
"package.json",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
43
|
+
"type": "module",
|
|
44
|
+
"module": "./dist/index.js",
|
|
45
|
+
"main": "./dist/index.cjs",
|
|
46
|
+
"types": "./dist/index.d.ts",
|
|
47
|
+
"exports": {
|
|
48
|
+
".": {
|
|
49
|
+
"types": {
|
|
50
|
+
"import": "./dist/index.d.ts",
|
|
51
|
+
"require": "./dist/index.d.cts"
|
|
52
|
+
},
|
|
53
|
+
"import": "./dist/index.js",
|
|
54
|
+
"require": "./dist/index.cjs"
|
|
55
|
+
},
|
|
56
|
+
"./run": {
|
|
57
|
+
"types": {
|
|
58
|
+
"import": "./dist/run.d.ts",
|
|
59
|
+
"require": "./dist/run.d.cts"
|
|
60
|
+
},
|
|
61
|
+
"import": "./dist/run.js",
|
|
62
|
+
"require": "./dist/run.cjs"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"sideEffects": false,
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@standard-schema/spec": "^1.1.0"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@optique/core": ""
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@standard-schema/spec": "^1.1.0",
|
|
74
|
+
"@types/node": "^20.19.9",
|
|
75
|
+
"tsdown": "^0.13.0",
|
|
76
|
+
"typescript": "^5.8.3",
|
|
77
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "tsdown",
|
|
81
|
+
"prepublish": "tsdown",
|
|
82
|
+
"test": "tsdown && node --experimental-transform-types --test",
|
|
83
|
+
"test:bun": "tsdown && bun test",
|
|
84
|
+
"test:deno": "deno test",
|
|
85
|
+
"test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test"
|
|
86
|
+
}
|
|
87
|
+
}
|