@smooai/config 2.0.0 → 2.0.2
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/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smooai/config",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Type-safe multi-language configuration management with schema validation, three-tier config (public, secret, feature flags), and runtime client support for TypeScript, Python, Rust, and Go.",
|
|
5
5
|
"homepage": "https://github.com/SmooAI/config#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -73,7 +73,6 @@
|
|
|
73
73
|
"@types/react-dom": "^19.2.3",
|
|
74
74
|
"husky": "^9.1.7",
|
|
75
75
|
"jsdom": "^28.1.0",
|
|
76
|
-
"lint-staged": "^15.4.3",
|
|
77
76
|
"lodash.snakecase": "^4.1.1",
|
|
78
77
|
"msw": "^2.12.10",
|
|
79
78
|
"oxfmt": "^0.28.0",
|
|
@@ -101,8 +100,8 @@
|
|
|
101
100
|
"check-all": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run test && pnpm run python:typecheck && pnpm run python:lint && pnpm run python:format:check && pnpm run rust:fmt:check && pnpm run rust:lint && pnpm run rust:test && pnpm run go:fmt:check && pnpm run go:lint && pnpm run go:test && pnpm run build",
|
|
102
101
|
"ci:publish": "pnpm build && pnpm changeset publish && pnpm run version:sync",
|
|
103
102
|
"format": "oxfmt --write . && pnpm run python:format && pnpm run rust:fmt && pnpm run go:fmt",
|
|
104
|
-
"lint": "oxlint . && pnpm run python:lint && pnpm run rust:lint && pnpm run go:lint",
|
|
105
|
-
"lint:fix": "oxlint --fix .",
|
|
103
|
+
"lint": "oxlint --ignore-pattern .sst --ignore-pattern .pulumi . && pnpm run python:lint && pnpm run rust:lint && pnpm run go:lint",
|
|
104
|
+
"lint:fix": "oxlint --ignore-pattern .sst --ignore-pattern .pulumi --fix .",
|
|
106
105
|
"pre-commit-check": "(zsh .husky/pre-commit)",
|
|
107
106
|
"test": "vitest run --passWithNoTests && pnpm run python:test && pnpm run rust:test && pnpm run go:test",
|
|
108
107
|
"test:integration": "vitest run --passWithNoTests --config vitest.integration.config.mts",
|