@generaltranslation/python-extractor 0.2.16 → 0.2.18
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 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@generaltranslation/python-extractor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "Python source code extraction for General Translation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -47,22 +47,21 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tree-sitter-python": "^0.25.0",
|
|
49
49
|
"web-tree-sitter": "^0.26.6",
|
|
50
|
-
"generaltranslation": "8.2.
|
|
50
|
+
"generaltranslation": "8.2.12"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsc",
|
|
54
54
|
"build:watch": "tsc --watch",
|
|
55
55
|
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
|
|
56
56
|
"build:release": "pnpm run build:clean",
|
|
57
|
-
"format": "
|
|
57
|
+
"format": "oxfmt src",
|
|
58
58
|
"patch": "pnpm version patch",
|
|
59
59
|
"release": "pnpm run build:clean && pnpm publish",
|
|
60
60
|
"release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
|
|
61
61
|
"release:beta": "pnpm run build:clean && pnpm publish --tag beta",
|
|
62
62
|
"release:latest": "pnpm run build:clean && pnpm publish --tag latest",
|
|
63
|
-
"lint": "eslint \"src/**/*.{js,ts}\"",
|
|
64
|
-
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix",
|
|
65
63
|
"test": "vitest run",
|
|
66
|
-
"test:watch": "vitest"
|
|
64
|
+
"test:watch": "vitest",
|
|
65
|
+
"typecheck": "tsc --noEmit"
|
|
67
66
|
}
|
|
68
67
|
}
|