tstyche 4.0.0-beta.1 → 4.0.0-beta.10
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/README.md +8 -5
- package/build/index.cjs +1 -0
- package/build/index.d.cts +36 -4
- package/build/index.d.ts +36 -4
- package/build/index.js +1 -1
- package/build/tstyche.d.ts +95 -75
- package/build/tstyche.js +1190 -851
- package/package.json +12 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.10",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
"./package.json": "./package.json",
|
|
29
29
|
"./tstyche": "./build/tstyche.js"
|
|
30
30
|
},
|
|
31
|
+
"main": "./build/index.js",
|
|
32
|
+
"types": "./build/index.d.ts",
|
|
31
33
|
"bin": "./build/bin.js",
|
|
32
34
|
"files": [
|
|
33
35
|
"build/*"
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
"generate:schema": "node ./scripts/generate-schema.js",
|
|
45
47
|
"generate:types": "node ./scripts/generate-types.js",
|
|
46
48
|
"lint": "biome lint --write",
|
|
47
|
-
"
|
|
49
|
+
"publish": "yarn build && yarn npm publish",
|
|
48
50
|
"test": "yarn test:unit && yarn test:e2e",
|
|
49
51
|
"test:coverage": "yarn test:coverage:collect && yarn test:coverage:report",
|
|
50
52
|
"test:coverage:collect": "yarn build --sourcemap && NODE_V8_COVERAGE='./coverage/v8-coverage' yarn test:e2e",
|
|
@@ -52,7 +54,7 @@
|
|
|
52
54
|
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
53
55
|
"test:e2e:parallel": "yarn test:run tests/*.test.js --exclude feature --parallel",
|
|
54
56
|
"test:e2e:serial": "yarn test:run tests/*.test.js --include feature",
|
|
55
|
-
"test:examples": "tstyche examples",
|
|
57
|
+
"test:examples": "NODE_OPTIONS='--experimental-strip-types' tstyche examples",
|
|
56
58
|
"test:run": "rm -rf ./tests/__fixtures__/.generated && yarn node ./tests/__utilities__/runner.js",
|
|
57
59
|
"test:types": "tstyche typetests",
|
|
58
60
|
"test:unit": "yarn test:run **/__tests__/*.test.js --parallel"
|
|
@@ -60,27 +62,27 @@
|
|
|
60
62
|
"devDependencies": {
|
|
61
63
|
"@biomejs/biome": "1.9.4",
|
|
62
64
|
"@rollup/plugin-typescript": "12.1.2",
|
|
63
|
-
"@types/node": "22.
|
|
64
|
-
"@types/react": "19.1.
|
|
65
|
+
"@types/node": "22.15.18",
|
|
66
|
+
"@types/react": "19.1.4",
|
|
65
67
|
"ajv": "8.17.1",
|
|
66
|
-
"cspell": "
|
|
68
|
+
"cspell": "9.0.1",
|
|
67
69
|
"magic-string": "0.30.17",
|
|
68
|
-
"monocart-coverage-reports": "2.12.
|
|
70
|
+
"monocart-coverage-reports": "2.12.4",
|
|
69
71
|
"pretty-ansi": "3.0.0",
|
|
70
|
-
"rollup": "4.
|
|
72
|
+
"rollup": "4.40.2",
|
|
71
73
|
"rollup-plugin-dts": "6.2.1",
|
|
72
74
|
"tslib": "2.8.1",
|
|
73
75
|
"typescript": "5.8.3"
|
|
74
76
|
},
|
|
75
77
|
"peerDependencies": {
|
|
76
|
-
"typescript": "
|
|
78
|
+
"typescript": ">=4.7"
|
|
77
79
|
},
|
|
78
80
|
"peerDependenciesMeta": {
|
|
79
81
|
"typescript": {
|
|
80
82
|
"optional": true
|
|
81
83
|
}
|
|
82
84
|
},
|
|
83
|
-
"packageManager": "yarn@4.
|
|
85
|
+
"packageManager": "yarn@4.9.1",
|
|
84
86
|
"engines": {
|
|
85
87
|
"node": ">=20.9"
|
|
86
88
|
}
|