python2ts 0.2.0 → 1.0.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/dist/cli/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  transpileAsync
4
- } from "../chunk-M4HMEUNQ.js";
4
+ } from "../chunk-VYG6GDWU.js";
5
5
 
6
6
  // src/cli/index.ts
7
7
  import { parseArgs } from "util";
package/dist/index.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  transpile,
13
13
  transpileAsync,
14
14
  walkTree
15
- } from "./chunk-M4HMEUNQ.js";
15
+ } from "./chunk-VYG6GDWU.js";
16
16
  export {
17
17
  debugTree,
18
18
  formatCode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "python2ts",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "description": "AST-based Python to TypeScript transpiler. Convert Python code to clean, idiomatic TypeScript with full type preservation.",
5
5
  "homepage": "https://sebastian-software.github.io/python2ts/",
6
6
  "repository": {
@@ -31,11 +31,6 @@
31
31
  "dist",
32
32
  "README.md"
33
33
  ],
34
- "scripts": {
35
- "build": "tsup",
36
- "dev": "tsup --watch",
37
- "typecheck": "tsc --noEmit"
38
- },
39
34
  "keywords": [
40
35
  "python",
41
36
  "typescript",
@@ -52,16 +47,21 @@
52
47
  "author": "Sebastian Software GmbH",
53
48
  "license": "MIT",
54
49
  "dependencies": {
55
- "@lezer/common": "^1.2.0",
56
- "@lezer/python": "^1.1.0",
57
- "prettier": "^3.0.0",
58
- "pythonlib": "workspace:*"
50
+ "@lezer/common": "^1.5.0",
51
+ "@lezer/python": "^1.1.18",
52
+ "prettier": "^3.8.0",
53
+ "pythonlib": "1.0.0"
59
54
  },
60
55
  "devDependencies": {
61
- "tsup": "^8.3.0",
62
- "typescript": "^5.6.0"
56
+ "tsup": "^8.5.1",
57
+ "typescript": "^5.9.3"
63
58
  },
64
59
  "engines": {
65
60
  "node": ">=22.0.0"
61
+ },
62
+ "scripts": {
63
+ "build": "tsup",
64
+ "dev": "tsup --watch",
65
+ "typecheck": "tsc --noEmit"
66
66
  }
67
- }
67
+ }