@ttsc/factory 0.15.11 → 0.16.1
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/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttsc/factory",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Self-contained legacy-style TypeScript AST factory and printer for source code generation, surviving the TypeScript-Go (tsgo) migration. Zero dependencies, no `typescript` import.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://ttsc.dev",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@typescript/native-preview": "7.0.0-dev.20260618.1",
|
|
26
25
|
"rimraf": "^6.1.2",
|
|
27
|
-
"rollup": "^4.56.0"
|
|
26
|
+
"rollup": "^4.56.0",
|
|
27
|
+
"typescript": "7.0.1-rc"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"files": [
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
|
-
"build": "rimraf lib &&
|
|
56
|
-
"dev": "
|
|
55
|
+
"build": "rimraf lib && tsc && rollup -c",
|
|
56
|
+
"dev": "tsc -p . --watch"
|
|
57
57
|
},
|
|
58
58
|
"module": "lib/index.mjs",
|
|
59
59
|
"types": "lib/index.d.ts"
|