inferred-types 1.1.0 → 1.1.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/modules/constants/dist/index.d.cts.map +1 -1
- package/modules/constants/dist/index.d.ts.map +1 -1
- package/modules/inferred-types/dist/index.cjs +24238 -19
- package/modules/inferred-types/dist/index.cjs.map +1 -0
- package/modules/inferred-types/dist/index.js +23374 -3
- package/modules/inferred-types/dist/index.js.map +1 -0
- package/modules/runtime/dist/index.cjs.map +1 -1
- package/modules/runtime/dist/index.d.cts +1 -1
- package/modules/runtime/dist/index.d.cts.map +1 -1
- package/modules/runtime/dist/index.d.ts +1 -1
- package/modules/runtime/dist/index.d.ts.map +1 -1
- package/modules/runtime/dist/index.js.map +1 -1
- package/modules/types/dist/index.d.cts.map +1 -1
- package/modules/types/dist/index.d.ts.map +1 -1
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferred-types",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Functions which provide useful type inference on Typescript projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/inocan-group/inferred-types"
|
|
@@ -46,11 +46,15 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"nuke": "pnpm -r nuke",
|
|
48
48
|
"test": "vitest run",
|
|
49
|
-
"test:imports": "scripts/invalid-imports.
|
|
49
|
+
"test:imports": "bun run scripts/invalid-imports.ts",
|
|
50
|
+
"test:bundle": "node scripts/test-bundle.mjs",
|
|
50
51
|
"test:ci": "vitest run",
|
|
51
52
|
"test:watch": "vitest",
|
|
52
53
|
"test:ui": "vitest --ui",
|
|
53
54
|
"test:types": "npx typed test",
|
|
55
|
+
"test:globals": "run-s test:globals:runtime test:globals:types",
|
|
56
|
+
"test:globals:runtime": "vitest run globals-and-transpiled",
|
|
57
|
+
"test:globals:types": "npx typed test globals-and-transpiled",
|
|
54
58
|
"typed": "npx typed test",
|
|
55
59
|
"typed:input-tokens": "npx typed test IT_Take GetInputToken FromInputToken",
|
|
56
60
|
"typed:datetime": "npx typed test datetime",
|
|
@@ -79,7 +83,7 @@
|
|
|
79
83
|
"@js-temporal/polyfill": "^0.5.1",
|
|
80
84
|
"@type-challenges/utils": "~0.1.1",
|
|
81
85
|
"@types/luxon": "^3.7.1",
|
|
82
|
-
"@types/node": "^22.18.
|
|
86
|
+
"@types/node": "^22.18.9",
|
|
83
87
|
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
84
88
|
"@typescript-eslint/parser": "^8.46.0",
|
|
85
89
|
"@typescript/analyze-trace": "^0.10.1",
|
|
@@ -103,6 +107,7 @@
|
|
|
103
107
|
"npm-run-all": "~4.1.5",
|
|
104
108
|
"pathe": "^2.0.3",
|
|
105
109
|
"tsdown": "^0.15.6",
|
|
110
|
+
"tsx": "^4.20.6",
|
|
106
111
|
"typecheck": "^0.1.2",
|
|
107
112
|
"typed-tester": "^0.11.6",
|
|
108
113
|
"typescript": "^5.9.3",
|