typeslayer 0.1.25 → 0.1.26
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 -21
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -25,31 +25,15 @@ in the root package you want to inspect (i.e. colocated to your package.json). T
|
|
|
25
25
|
|
|
26
26
|
see: [FAQ](https://github.com/dimitropoulos/typeslayer/blob/main/FAQ.md)
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
## Support
|
|
29
29
|
|
|
30
|
-
TypeSlayer
|
|
30
|
+
TypeSlayer supports Linux x64 (glibc 2.39+), macOS ARM64 (Apple Silicon), and Windows x64. Please note that next year is the year of the Linux desktop 📯.
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
## Security
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
TypeSlayer currently does not collect any analytics - although it probably will try to collect "someone somewhere ran it at XYZ timestamp" data in the future (or possibly crashlytics). If that day comes, of course you'll be able to opt out (including before app boot via config).
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
I made TypeSlayer because I learned delulu-levels-of-detail about TypeScript performance tuning [while getting Doom to run in TypeScript types](https://youtu.be/0mCsluv5FXA), yet many of those techniques are still opaque to most people.
|
|
39
|
-
|
|
40
|
-
I wanted to make it easy for others to put up PRs at their companies all like "I increased type-checking perf on this file by 380,000x and shaved 23 seconds off every CI run" (real story btw lol). I took what I learned about how to debug type performance and wrapped it all up into this tool.
|
|
41
|
-
|
|
42
|
-
## Data / Security
|
|
43
|
-
|
|
44
|
-
TypeSlayer supports Linux x64 (glibc 2.39+), macOS ARM64 (Apple Silicon), and Windows x64. Please note that next year is the year of the Linux desktop.
|
|
45
|
-
|
|
46
|
-
TypeSlayer currently does not collect any analytics - although it probably will try to collect "someone somewhere ran it at XYZ timestamp" data in the future. all data is stored:
|
|
47
|
-
|
|
48
|
-
- Linux: `~/.local/share/typeslayer/`
|
|
49
|
-
- macOS: `~/Library/Application Support/typeslayer/`
|
|
50
|
-
- Windows: `%APPDATA%\typeslayer\`
|
|
51
|
-
|
|
52
|
-
TypeSlayer can read any file the running user can read and it can run package.json scripts (so treat it as you would your terminal).
|
|
36
|
+
Actually TypeSlayer is a fully offline app - it does not make any network requests.
|
|
53
37
|
|
|
54
38
|
## Contributing
|
|
55
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typeslayer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Slay your TypeScript types",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"postinstall": "node scripts/postinstall.js"
|
|
44
44
|
},
|
|
45
45
|
"optionalDependencies": {
|
|
46
|
-
"@typeslayer/linux-x64": "0.1.
|
|
47
|
-
"@typeslayer/darwin-arm64": "0.1.
|
|
48
|
-
"@typeslayer/win32-x64": "0.1.
|
|
46
|
+
"@typeslayer/linux-x64": "0.1.26",
|
|
47
|
+
"@typeslayer/darwin-arm64": "0.1.26",
|
|
48
|
+
"@typeslayer/win32-x64": "0.1.26"
|
|
49
49
|
}
|
|
50
50
|
}
|