tstyche 1.0.0-beta.6 → 1.0.0-beta.7
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/CHANGELOG.md +15 -0
- package/README.md +3 -3
- package/build/tstyche.d.ts +108 -71
- package/build/tstyche.js +679 -577
- package/package.json +21 -22
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.7",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
7
7
|
"types",
|
|
8
8
|
"test",
|
|
9
|
-
"runner"
|
|
9
|
+
"runner",
|
|
10
|
+
"expect"
|
|
10
11
|
],
|
|
11
12
|
"homepage": "https://tstyche.org",
|
|
12
13
|
"bugs": {
|
|
@@ -35,53 +36,51 @@
|
|
|
35
36
|
"scripts": {
|
|
36
37
|
"build": "rollup --config rollup.config.js",
|
|
37
38
|
"build:watch": "yarn build --sourcemap --watch",
|
|
38
|
-
"clean": "rm -rf build",
|
|
39
|
+
"clean": "rm -rf .cache build",
|
|
39
40
|
"generate": "yarn generate:schema && yarn generate:types",
|
|
40
41
|
"generate:schema": "node scripts/generate-schema.js",
|
|
41
42
|
"generate:types": "node scripts/generate-types.js",
|
|
42
43
|
"lint": "yarn lint:cspell && yarn lint:eslint && yarn lint:prettier",
|
|
43
|
-
"lint:cspell": "cspell --cache --config cspell.config.json --quiet",
|
|
44
|
-
"lint:eslint": "
|
|
45
|
-
"lint:
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"pretest": "
|
|
44
|
+
"lint:cspell": "cspell --cache --cache-location ./.cache/cspell --config cspell.config.json --quiet",
|
|
45
|
+
"lint:eslint": "eslint ./ --cache --cache-location ./.cache/eslint --config eslint.config.json --ext .js,.cts,.ts,.tsx",
|
|
46
|
+
"lint:prettier": "prettier ./ --cache --cache-location ./.cache/prettier --check",
|
|
47
|
+
"prepack": "yarn clean && yarn build",
|
|
48
|
+
"prepublish": "yarn test",
|
|
49
|
+
"pretest": "tstyche --install --target 4.8,latest",
|
|
49
50
|
"test": "yarn pretest && NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --config jest.config.js",
|
|
50
51
|
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test",
|
|
51
52
|
"test:e2e": "yarn test --testMatch '**/tests/*.test.ts'",
|
|
52
53
|
"test:examples": "tstyche examples",
|
|
53
54
|
"test:types": "tstyche tests",
|
|
54
55
|
"test:unit": "yarn test --testMatch '**/src/**/__tests__/*.test.ts?(x)'",
|
|
55
|
-
"typecheck": "
|
|
56
|
+
"typecheck": "tsc --noEmit --project tsconfig.json"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@jest/globals": "29.7.0",
|
|
59
60
|
"@rollup/plugin-typescript": "11.1.5",
|
|
60
|
-
"@types/node": "20.10.
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
62
|
-
"@typescript-eslint/parser": "6.
|
|
61
|
+
"@types/node": "20.10.5",
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "6.16.0",
|
|
63
|
+
"@typescript-eslint/parser": "6.16.0",
|
|
63
64
|
"ajv": "8.12.0",
|
|
64
65
|
"c8": "8.0.1",
|
|
65
|
-
"cspell": "8.
|
|
66
|
-
"eslint": "8.
|
|
67
|
-
"eslint-config-prettier": "9.1.0",
|
|
66
|
+
"cspell": "8.2.4",
|
|
67
|
+
"eslint": "8.56.0",
|
|
68
68
|
"eslint-import-resolver-typescript": "3.6.1",
|
|
69
|
-
"eslint-plugin-import": "2.29.
|
|
69
|
+
"eslint-plugin-import": "2.29.1",
|
|
70
70
|
"eslint-plugin-jest": "27.6.0",
|
|
71
71
|
"eslint-plugin-jest-formatting": "3.1.0",
|
|
72
|
-
"eslint-plugin-markdown": "3.0.1",
|
|
73
72
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
74
73
|
"eslint-plugin-tsdoc": "0.2.17",
|
|
75
74
|
"jest": "29.7.0",
|
|
76
75
|
"jest-serializer-ansi-escapes": "2.0.1",
|
|
77
76
|
"magic-string": "0.30.5",
|
|
78
|
-
"prettier": "3.1.
|
|
79
|
-
"rollup": "4.
|
|
77
|
+
"prettier": "3.1.1",
|
|
78
|
+
"rollup": "4.9.1",
|
|
80
79
|
"rollup-plugin-dts": "6.1.0",
|
|
81
80
|
"rollup-plugin-tsconfig-paths": "1.5.2",
|
|
82
|
-
"ts-node": "10.9.
|
|
81
|
+
"ts-node": "10.9.2",
|
|
83
82
|
"tslib": "2.6.2",
|
|
84
|
-
"typescript": "5.
|
|
83
|
+
"typescript": "5.3.3"
|
|
85
84
|
},
|
|
86
85
|
"peerDependencies": {
|
|
87
86
|
"typescript": "4.x || 5.x"
|