tstyche 4.0.0-beta.8 → 4.0.0-rc.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 -1
- package/build/index.d.cts +3 -3
- package/build/index.d.ts +3 -3
- package/build/tstyche.d.ts +80 -72
- package/build/tstyche.js +327 -279
- package/package.json +2 -47
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-rc.0",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -31,59 +31,14 @@
|
|
|
31
31
|
"main": "./build/index.js",
|
|
32
32
|
"types": "./build/index.d.ts",
|
|
33
33
|
"bin": "./build/bin.js",
|
|
34
|
-
"files": [
|
|
35
|
-
"build/*"
|
|
36
|
-
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"bench": "./benchmarks/tstyche.bench.sh",
|
|
39
|
-
"build": "rollup --config rollup.config.js",
|
|
40
|
-
"build:watch": "yarn build --sourcemap --watch",
|
|
41
|
-
"check": "yarn check:spelling && yarn check:types",
|
|
42
|
-
"check:spelling": "cspell --config cspell.config.json --quiet",
|
|
43
|
-
"check:types": "tsc --noEmit --project tsconfig.json",
|
|
44
|
-
"format": "biome format --write",
|
|
45
|
-
"generate": "yarn generate:schema && yarn generate:types",
|
|
46
|
-
"generate:schema": "node ./scripts/generate-schema.js",
|
|
47
|
-
"generate:types": "node ./scripts/generate-types.js",
|
|
48
|
-
"lint": "biome lint --write",
|
|
49
|
-
"prepublish": "yarn build",
|
|
50
|
-
"test": "yarn test:unit && yarn test:e2e",
|
|
51
|
-
"test:coverage": "yarn test:coverage:collect && yarn test:coverage:report",
|
|
52
|
-
"test:coverage:collect": "yarn build --sourcemap && NODE_V8_COVERAGE='./coverage/v8-coverage' yarn test:e2e",
|
|
53
|
-
"test:coverage:report": "node ./scripts/report-coverage.js",
|
|
54
|
-
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
55
|
-
"test:e2e:parallel": "yarn test:run tests/*.test.js --exclude feature --parallel",
|
|
56
|
-
"test:e2e:serial": "yarn test:run tests/*.test.js --include feature",
|
|
57
|
-
"test:examples": "NODE_OPTIONS='--import ts-blank-space/register' tstyche examples",
|
|
58
|
-
"test:run": "rm -rf ./tests/__fixtures__/.generated && yarn node ./tests/__utilities__/runner.js",
|
|
59
|
-
"test:types": "tstyche typetests",
|
|
60
|
-
"test:unit": "yarn test:run **/__tests__/*.test.js --parallel"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@biomejs/biome": "1.9.4",
|
|
64
|
-
"@rollup/plugin-typescript": "12.1.2",
|
|
65
|
-
"@types/node": "22.15.3",
|
|
66
|
-
"@types/react": "19.1.2",
|
|
67
|
-
"ajv": "8.17.1",
|
|
68
|
-
"cspell": "9.0.0",
|
|
69
|
-
"magic-string": "0.30.17",
|
|
70
|
-
"monocart-coverage-reports": "2.12.4",
|
|
71
|
-
"pretty-ansi": "3.0.0",
|
|
72
|
-
"rollup": "4.40.1",
|
|
73
|
-
"rollup-plugin-dts": "6.2.1",
|
|
74
|
-
"ts-blank-space": "0.6.1",
|
|
75
|
-
"tslib": "2.8.1",
|
|
76
|
-
"typescript": "5.8.3"
|
|
77
|
-
},
|
|
78
34
|
"peerDependencies": {
|
|
79
|
-
"typescript": "
|
|
35
|
+
"typescript": ">=4.7"
|
|
80
36
|
},
|
|
81
37
|
"peerDependenciesMeta": {
|
|
82
38
|
"typescript": {
|
|
83
39
|
"optional": true
|
|
84
40
|
}
|
|
85
41
|
},
|
|
86
|
-
"packageManager": "yarn@4.9.1",
|
|
87
42
|
"engines": {
|
|
88
43
|
"node": ">=20.9"
|
|
89
44
|
}
|