inferred-types 1.4.3 → 1.4.5
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/inferred-types/dist/index.d.cts +2 -2
- package/modules/inferred-types/dist/index.d.cts.map +1 -1
- package/modules/inferred-types/dist/index.d.mts +2 -2
- package/modules/inferred-types/dist/index.d.mts.map +1 -1
- package/modules/runtime/dist/index.d.cts +2 -2
- package/modules/runtime/dist/index.d.cts.map +1 -1
- package/modules/runtime/dist/index.d.mts +2 -2
- package/modules/runtime/dist/index.d.mts.map +1 -1
- package/modules/types/dist/index.d.cts.map +1 -1
- package/modules/types/dist/index.d.mts.map +1 -1
- package/package.json +29 -35
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferred-types",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "Functions which provide useful type inference on Typescript projects",
|
|
5
5
|
"repository": {
|
|
6
|
-
"
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/inocan-group/inferred-types.git"
|
|
7
8
|
},
|
|
8
9
|
"license": "MIT",
|
|
9
10
|
"author": "Ken Snyder<ken@ken.net>",
|
|
@@ -21,45 +22,38 @@
|
|
|
21
22
|
}
|
|
22
23
|
},
|
|
23
24
|
"./types": {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"default": "./modules/types/dist/index.cjs"
|
|
32
|
-
}
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./modules/types/dist/index.d.mts",
|
|
27
|
+
"default": "./modules/types/dist/index.mjs"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./modules/types/dist/index.d.cts",
|
|
31
|
+
"default": "./modules/types/dist/index.cjs"
|
|
33
32
|
}
|
|
34
33
|
},
|
|
35
34
|
"./constants": {
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"default": "./modules/constants/dist/index.cjs"
|
|
44
|
-
}
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./modules/constants/dist/index.d.mts",
|
|
37
|
+
"default": "./modules/constants/dist/index.mjs"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./modules/constants/dist/index.d.cts",
|
|
41
|
+
"default": "./modules/constants/dist/index.cjs"
|
|
45
42
|
}
|
|
46
43
|
},
|
|
47
44
|
"./runtime": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
"default": "./modules/runtime/dist/index.cjs"
|
|
56
|
-
}
|
|
45
|
+
"import": {
|
|
46
|
+
"types": "./modules/runtime/dist/index.d.mts",
|
|
47
|
+
"default": "./modules/runtime/dist/index.mjs"
|
|
48
|
+
},
|
|
49
|
+
"require": {
|
|
50
|
+
"types": "./modules/runtime/dist/index.d.cts",
|
|
51
|
+
"default": "./modules/runtime/dist/index.cjs"
|
|
57
52
|
}
|
|
58
53
|
}
|
|
59
54
|
},
|
|
60
55
|
"main": "modules/inferred-types/dist/index.cjs",
|
|
61
|
-
"module": "modules/inferred-types/dist/index.
|
|
62
|
-
"types": "modules/inferred-types/dist/index.d.mts",
|
|
56
|
+
"module": "modules/inferred-types/dist/index.mjs",
|
|
63
57
|
"files": [
|
|
64
58
|
"modules/constants/dist",
|
|
65
59
|
"modules/inferred-types/dist",
|
|
@@ -96,6 +90,7 @@
|
|
|
96
90
|
"moment": "^2.30.1",
|
|
97
91
|
"moment-timezone": "^0.6.0",
|
|
98
92
|
"npm-run-all": "~4.1.5",
|
|
93
|
+
"package-json-validator": "^0.59.0",
|
|
99
94
|
"pathe": "^2.0.3",
|
|
100
95
|
"tsdown": "^0.16.6",
|
|
101
96
|
"tsx": "^4.20.6",
|
|
@@ -108,9 +103,6 @@
|
|
|
108
103
|
"vitest": "^4.0.13",
|
|
109
104
|
"vue": "^3.5.24"
|
|
110
105
|
},
|
|
111
|
-
"dependencies": {
|
|
112
|
-
"madge": "^8.0.0"
|
|
113
|
-
},
|
|
114
106
|
"scripts": {
|
|
115
107
|
"nuke": "pnpm -r nuke",
|
|
116
108
|
"circular": "pnpm -r --stream --color=always --workspace-concurrency=1 circular || true",
|
|
@@ -119,6 +111,7 @@
|
|
|
119
111
|
"test:runtime": "vitest run",
|
|
120
112
|
"test:types": "node_modules/.bin/typed test",
|
|
121
113
|
"test:imports": "bun run scripts/invalid-imports.ts",
|
|
114
|
+
"test:package": "bun run scripts/validate-package-json.ts",
|
|
122
115
|
"test:bundle": "node scripts/test-bundle.mjs",
|
|
123
116
|
"test:circular-deps": "node scripts/test-circular-deps.mjs",
|
|
124
117
|
"test:ci": "vitest run",
|
|
@@ -137,7 +130,8 @@
|
|
|
137
130
|
"audit:types": "typed source -c modules/types/tsconfig.json -w 6133 -w 6307",
|
|
138
131
|
"audit:runtime": "typed source -c modules/runtime/tsconfig.json -w 2304 -w 6133 -w 6307",
|
|
139
132
|
"audit:constants": "typed source -c modules/constants/tsconfig.json --warn 6133",
|
|
140
|
-
"release": "
|
|
133
|
+
"release": "run-s test:package release:push",
|
|
134
|
+
"release:push": "bumpp",
|
|
141
135
|
"jsr:dry-run": "npx jsr --dry-run --allow-slow-types",
|
|
142
136
|
"build": "pnpm -r build",
|
|
143
137
|
"build:constants": "pnpm --filter constants build",
|