tstyche 1.0.0-beta.8 → 1.0.0-rc
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 +24 -0
- package/README.md +13 -13
- package/build/bin.js +2 -1
- package/build/index.d.cts +6 -6
- package/build/index.d.ts +6 -6
- package/build/tstyche.d.ts +43 -43
- package/build/tstyche.js +316 -343
- package/package.json +21 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -37,47 +37,46 @@
|
|
|
37
37
|
"bench": "./benchmarks/tstyche.bench.sh",
|
|
38
38
|
"build": "rollup --config rollup.config.js",
|
|
39
39
|
"build:watch": "yarn build --sourcemap --watch",
|
|
40
|
-
"clean": "rm -rf
|
|
40
|
+
"clean": "rm -rf build",
|
|
41
41
|
"generate": "yarn generate:schema && yarn generate:types",
|
|
42
|
-
"generate:schema": "node
|
|
43
|
-
"generate:types": "node
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
42
|
+
"generate:schema": "node ./models/__scripts__/generate-schema.js",
|
|
43
|
+
"generate:types": "node ./models/__scripts__/generate-types.js",
|
|
44
|
+
"check": "yarn check:spelling && yarn check:formatting",
|
|
45
|
+
"check:spelling": "cspell --config cspell.config.json --quiet",
|
|
46
|
+
"check:formatting": "dprint check",
|
|
47
|
+
"check:types": "tsc --noEmit --project tsconfig.json",
|
|
48
|
+
"format": "dprint fmt",
|
|
49
|
+
"lint": "eslint ./ --config eslint.config.json --ext .js,.cts,.ts,.tsx",
|
|
48
50
|
"prepack": "yarn clean && yarn build",
|
|
49
51
|
"prepublish": "yarn test",
|
|
50
52
|
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --config jest.config.js",
|
|
51
|
-
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test",
|
|
52
|
-
"test:e2e": "yarn test --testMatch '**/tests/*.test.
|
|
53
|
+
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test:e2e",
|
|
54
|
+
"test:e2e": "yarn test --testMatch '**/tests/*.test.js'",
|
|
53
55
|
"test:examples": "tstyche examples",
|
|
54
56
|
"test:types": "tstyche tests",
|
|
55
|
-
"test:unit": "yarn test --testMatch '**/
|
|
56
|
-
"typecheck": "tsc --noEmit --project tsconfig.json"
|
|
57
|
+
"test:unit": "yarn test --testMatch '**/source/**/__tests__/*.test.ts?(x)'"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@jest/globals": "29.7.0",
|
|
60
|
-
"@rollup/plugin-typescript": "11.1.
|
|
61
|
-
"@types/node": "20.
|
|
62
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
63
|
-
"@typescript-eslint/parser": "6.
|
|
61
|
+
"@rollup/plugin-typescript": "11.1.6",
|
|
62
|
+
"@types/node": "20.11.8",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "6.19.1",
|
|
64
|
+
"@typescript-eslint/parser": "6.19.1",
|
|
64
65
|
"ajv": "8.12.0",
|
|
65
|
-
"c8": "9.
|
|
66
|
+
"c8": "9.1.0",
|
|
66
67
|
"cspell": "8.3.2",
|
|
68
|
+
"dprint": "0.45.0",
|
|
67
69
|
"eslint": "8.56.0",
|
|
68
70
|
"eslint-import-resolver-typescript": "3.6.1",
|
|
69
71
|
"eslint-plugin-import": "2.29.1",
|
|
70
|
-
"eslint-plugin-jest": "27.6.
|
|
72
|
+
"eslint-plugin-jest": "27.6.3",
|
|
71
73
|
"eslint-plugin-jest-formatting": "3.1.0",
|
|
72
74
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
73
|
-
"eslint-plugin-tsdoc": "0.2.17",
|
|
74
75
|
"jest": "29.7.0",
|
|
75
76
|
"jest-serializer-ansi-escapes": "2.0.1",
|
|
76
77
|
"magic-string": "0.30.5",
|
|
77
|
-
"
|
|
78
|
-
"rollup": "4.9.3",
|
|
78
|
+
"rollup": "4.9.6",
|
|
79
79
|
"rollup-plugin-dts": "6.1.0",
|
|
80
|
-
"rollup-plugin-tsconfig-paths": "1.5.2",
|
|
81
80
|
"ts-node": "10.9.2",
|
|
82
81
|
"tslib": "2.6.2",
|
|
83
82
|
"typescript": "5.3.3"
|