inferred-types 0.43.1 → 0.43.3
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/dist/inferred-types/index.cjs +2505 -0
- package/dist/inferred-types/tsconfig.tsbuildinfo +1 -1
- package/dist/runtime/tsconfig.tsbuildinfo +1 -1
- package/dist/runtime/type-guards/isObject.d.ts +3 -2
- package/dist/runtime/type-guards/isObject.d.ts.map +1 -1
- package/dist/types/runtime-types/Dict.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferred-types",
|
|
3
|
-
"version": "0.43.
|
|
3
|
+
"version": "0.43.3",
|
|
4
4
|
"description": "Functions which provide useful type inference on TS projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ken Snyder<ken@ken.net>",
|
|
@@ -27,8 +27,7 @@
|
|
|
27
27
|
"build": "run-s build:esm build:cjs",
|
|
28
28
|
"build:esm": "tsc -b --verbose src/inferred-types",
|
|
29
29
|
"build:cjs": "tsup dist/inferred-types/index.js --format cjs -d dist/inferred-types",
|
|
30
|
-
"
|
|
31
|
-
"diagnostics": "npx tsc -b -f --extendedDiagnostics src/inferred-types",
|
|
30
|
+
"diagnostics": "tsc -b -f --extendedDiagnostics src/inferred-types",
|
|
32
31
|
"clean": "rimraf dist/**/*",
|
|
33
32
|
"lint": "eslint src",
|
|
34
33
|
"trace": "npx tsc --noEmit --diagnostics && npx analyze-trace trace",
|
|
@@ -44,14 +43,14 @@
|
|
|
44
43
|
"release": "run-s lint release:latest test:ci audit:fix release:bump",
|
|
45
44
|
"release:latest": "pnpm install",
|
|
46
45
|
"release:bump": "bumpp",
|
|
47
|
-
"prepublishOnly": "npm run build
|
|
46
|
+
"prepublishOnly": "npm run build",
|
|
48
47
|
"watch": "run-p watch:*",
|
|
49
48
|
"watch:types": "ts-type-tester tests tests/tsconfig.json --warn 6133 -w",
|
|
50
49
|
"watch:lint": "esw (src|tests)/**/*.ts -w --clear",
|
|
51
50
|
"watch:bundle": "tsup src/index.ts --format=esm --dts"
|
|
52
51
|
},
|
|
53
52
|
"devDependencies": {
|
|
54
|
-
"@arktype/attest": "^0.
|
|
53
|
+
"@arktype/attest": "^0.7.7",
|
|
55
54
|
"@eslint/js": "^9.3.0",
|
|
56
55
|
"@type-challenges/utils": "~0.1.1",
|
|
57
56
|
"@types/node": "^18.19.33",
|