tstyche 3.4.0 → 4.0.0-beta.0
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 +1 -2
- package/build/index.d.cts +0 -69
- package/build/index.d.ts +0 -69
- package/build/tstyche.d.ts +58 -61
- package/build/tstyche.js +421 -514
- package/package.json +12 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -28,8 +28,6 @@
|
|
|
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",
|
|
33
31
|
"bin": "./build/bin.js",
|
|
34
32
|
"files": [
|
|
35
33
|
"build/*"
|
|
@@ -41,13 +39,12 @@
|
|
|
41
39
|
"check": "yarn check:spelling && yarn check:types",
|
|
42
40
|
"check:spelling": "cspell --config cspell.config.json --quiet",
|
|
43
41
|
"check:types": "tsc --noEmit --project tsconfig.json",
|
|
44
|
-
"clean": "rm -rf build",
|
|
45
42
|
"format": "biome format --write",
|
|
46
43
|
"generate": "yarn generate:schema && yarn generate:types",
|
|
47
44
|
"generate:schema": "node ./scripts/generate-schema.js",
|
|
48
45
|
"generate:types": "node ./scripts/generate-types.js",
|
|
49
46
|
"lint": "biome lint --write",
|
|
50
|
-
"prepublish": "yarn
|
|
47
|
+
"prepublish": "yarn build",
|
|
51
48
|
"test": "yarn test:unit && yarn test:e2e",
|
|
52
49
|
"test:coverage": "yarn test:coverage:collect && yarn test:coverage:report",
|
|
53
50
|
"test:coverage:collect": "yarn build --sourcemap && NODE_V8_COVERAGE='./coverage/v8-coverage' yarn test:e2e",
|
|
@@ -63,28 +60,28 @@
|
|
|
63
60
|
"devDependencies": {
|
|
64
61
|
"@biomejs/biome": "1.9.4",
|
|
65
62
|
"@rollup/plugin-typescript": "12.1.2",
|
|
66
|
-
"@types/node": "22.
|
|
67
|
-
"@types/react": "19.0.
|
|
63
|
+
"@types/node": "22.13.14",
|
|
64
|
+
"@types/react": "19.0.12",
|
|
68
65
|
"ajv": "8.17.1",
|
|
69
|
-
"cspell": "8.
|
|
66
|
+
"cspell": "8.18.1",
|
|
70
67
|
"magic-string": "0.30.17",
|
|
71
|
-
"monocart-coverage-reports": "2.
|
|
68
|
+
"monocart-coverage-reports": "2.12.3",
|
|
72
69
|
"pretty-ansi": "3.0.0",
|
|
73
|
-
"rollup": "4.
|
|
74
|
-
"rollup-plugin-dts": "6.
|
|
70
|
+
"rollup": "4.38.0",
|
|
71
|
+
"rollup-plugin-dts": "6.2.1",
|
|
75
72
|
"tslib": "2.8.1",
|
|
76
|
-
"typescript": "5.
|
|
73
|
+
"typescript": "5.8.2"
|
|
77
74
|
},
|
|
78
75
|
"peerDependencies": {
|
|
79
|
-
"typescript": "
|
|
76
|
+
"typescript": "5.x"
|
|
80
77
|
},
|
|
81
78
|
"peerDependenciesMeta": {
|
|
82
79
|
"typescript": {
|
|
83
80
|
"optional": true
|
|
84
81
|
}
|
|
85
82
|
},
|
|
86
|
-
"packageManager": "yarn@4.
|
|
83
|
+
"packageManager": "yarn@4.8.0",
|
|
87
84
|
"engines": {
|
|
88
|
-
"node": ">=
|
|
85
|
+
"node": ">=20.9"
|
|
89
86
|
}
|
|
90
87
|
}
|