tstyche 1.1.0 → 2.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 +5 -5
- package/build/index.d.cts +98 -39
- package/build/index.d.ts +98 -39
- package/build/tstyche.d.ts +87 -74
- package/build/tstyche.js +598 -267
- package/package.json +15 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.0",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -50,36 +50,35 @@
|
|
|
50
50
|
"lint": "eslint ./ --config eslint.config.json --ext .js,.cts,.ts,.tsx",
|
|
51
51
|
"prepack": "yarn clean && yarn build",
|
|
52
52
|
"prepublish": "yarn test",
|
|
53
|
-
"test": "yarn test:unit && yarn test:
|
|
53
|
+
"test": "yarn test:unit && yarn test:e2e",
|
|
54
54
|
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test:e2e",
|
|
55
|
-
"test:e2e": "mocha tests/*.
|
|
55
|
+
"test:e2e": "mocha tests/*.test.* --config mocha.config.json",
|
|
56
56
|
"test:examples": "tstyche examples",
|
|
57
|
-
"test:
|
|
58
|
-
"test:
|
|
59
|
-
"test:unit": "mocha source/*/__tests__/*.js --config mocha.config.json"
|
|
57
|
+
"test:types": "tstyche typetests",
|
|
58
|
+
"test:unit": "mocha **/__tests__/*.test.* --config mocha.config.json"
|
|
60
59
|
},
|
|
61
60
|
"devDependencies": {
|
|
62
61
|
"@rollup/plugin-typescript": "11.1.6",
|
|
63
62
|
"@types/mocha": "10.0.6",
|
|
64
|
-
"@types/node": "20.11.
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
66
|
-
"@typescript-eslint/parser": "7.
|
|
63
|
+
"@types/node": "20.11.30",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "7.4.0",
|
|
65
|
+
"@typescript-eslint/parser": "7.4.0",
|
|
67
66
|
"ajv": "8.12.0",
|
|
68
67
|
"c8": "9.1.0",
|
|
69
|
-
"cspell": "8.
|
|
68
|
+
"cspell": "8.6.1",
|
|
70
69
|
"dprint": "0.45.0",
|
|
71
70
|
"eslint": "8.57.0",
|
|
72
71
|
"eslint-import-resolver-typescript": "3.6.1",
|
|
73
72
|
"eslint-plugin-import": "2.29.1",
|
|
74
|
-
"eslint-plugin-mocha": "10.
|
|
73
|
+
"eslint-plugin-mocha": "10.4.1",
|
|
75
74
|
"eslint-plugin-simple-import-sort": "12.0.0",
|
|
76
|
-
"magic-string": "0.30.
|
|
77
|
-
"mocha": "10.
|
|
75
|
+
"magic-string": "0.30.8",
|
|
76
|
+
"mocha": "10.4.0",
|
|
78
77
|
"pretty-ansi": "2.0.0",
|
|
79
|
-
"rollup": "4.
|
|
78
|
+
"rollup": "4.13.1",
|
|
80
79
|
"rollup-plugin-dts": "6.1.0",
|
|
81
80
|
"tslib": "2.6.2",
|
|
82
|
-
"typescript": "5.
|
|
81
|
+
"typescript": "5.4.3"
|
|
83
82
|
},
|
|
84
83
|
"peerDependencies": {
|
|
85
84
|
"typescript": "4.x || 5.x"
|
|
@@ -89,7 +88,7 @@
|
|
|
89
88
|
"optional": true
|
|
90
89
|
}
|
|
91
90
|
},
|
|
92
|
-
"packageManager": "yarn@3.8.
|
|
91
|
+
"packageManager": "yarn@3.8.1",
|
|
93
92
|
"engines": {
|
|
94
93
|
"node": ">=14.17"
|
|
95
94
|
}
|