@stacksjs/tinker 0.56.3 → 0.56.22
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/dist/index.d.ts +2 -1
- package/dist/index.mjs +2 -1
- package/dist/tinker.d.ts +2 -0
- package/{tinker.js → dist/tinker.mjs} +1 -1
- package/package.json +9 -7
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as repl from '@vue/repl';
|
|
2
|
+
export { repl };
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as repl from '@vue/repl';
|
|
2
|
+
export { repl };
|
package/dist/tinker.d.ts
ADDED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import
|
|
2
|
+
import 'tsx/cli';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/tinker",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.56.
|
|
4
|
+
"version": "0.56.22",
|
|
5
5
|
"packageManager": "pnpm@8.6.5",
|
|
6
6
|
"description": "The Stacks way to tinker.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -21,31 +21,33 @@
|
|
|
21
21
|
"repl",
|
|
22
22
|
"typescript",
|
|
23
23
|
"tsx",
|
|
24
|
+
"esno",
|
|
24
25
|
"zero-config",
|
|
25
26
|
"stacks"
|
|
26
27
|
],
|
|
27
|
-
"
|
|
28
|
-
"
|
|
28
|
+
"main": "./dist/index.mjs",
|
|
29
|
+
"module": "./dist/index.mjs",
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
29
31
|
"contributors": [
|
|
30
32
|
"Chris Breuer <chris@ow3.org>"
|
|
31
33
|
],
|
|
32
34
|
"bin": {
|
|
33
|
-
"tinker": "tinker.
|
|
35
|
+
"tinker": "./dist/tinker.mjs"
|
|
34
36
|
},
|
|
35
37
|
"files": [
|
|
36
38
|
"dist",
|
|
37
39
|
"README.md"
|
|
38
40
|
],
|
|
39
41
|
"peerDependencies": {
|
|
40
|
-
"@vue/repl": "^2.
|
|
42
|
+
"@vue/repl": "^2.4.0",
|
|
41
43
|
"tsx": "^3.12.7"
|
|
42
44
|
},
|
|
43
45
|
"dependencies": {
|
|
44
|
-
"@vue/repl": "^2.
|
|
46
|
+
"@vue/repl": "^2.4.0",
|
|
45
47
|
"tsx": "^3.12.7"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
|
-
"typescript": "^5.1.
|
|
50
|
+
"typescript": "^5.1.5",
|
|
49
51
|
"unbuild": "^1.2.1"
|
|
50
52
|
},
|
|
51
53
|
"scripts": {
|