udpipe-node 0.1.0 → 0.2.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.
Files changed (1) hide show
  1. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "udpipe-node",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "UDPipe 1.4.0 grammatical parser in Node.js / TypeScript. With a portable pure-WASM conversion for cross-platform support (macOS, Windows, Linux), custom terminal-based GUI with a detailed glossary, a fallback native binary-based engine, and a typed CoNLL-U interpreter.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "scripts": {
24
24
  "build": "tsc",
25
25
  "build:wasm": "bash wasm/build.sh",
26
- "start": "npm run build && node scripts/verify-wasm.mjs",
26
+ "start": "npm run build && node dist/cli.js",
27
27
  "verify": "node scripts/verify.mjs",
28
28
  "verify:wasm": "node scripts/verify-wasm.mjs",
29
29
  "prepublishOnly": "npm run build"
@@ -45,5 +45,8 @@
45
45
  "devDependencies": {
46
46
  "typescript": "~5.8.2",
47
47
  "@types/node": "^22.14.0"
48
+ },
49
+ "dependencies": {
50
+ "chalk": "^5.6.2"
48
51
  }
49
52
  }