| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 1 | { |
| 2 | "name": "conllu-gender", |
| Marc Kupietz | 35e0aa8 | 2026-03-07 10:31:23 +0100 | [diff] [blame] | 3 | "version": "0.1.0", |
| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 4 | "description": "Reads CoNLL-U format from stdin and annotates gender-sensitive forms (Genderstern, Doppelpunkt, Unterstrich, Binnen-I, Klammern, Schrägstrich) and neo-pronouns with correct POS, lemma, and morphological features. Writes CoNLL-U format to stdout.", |
| 5 | "main": "src/index.js", |
| 6 | "bin": { |
| 7 | "conllu-gender": "src/index.js" |
| 8 | }, |
| 9 | "scripts": { |
| Marc Kupietz | ebf770e | 2026-03-07 10:56:32 +0100 | [diff] [blame^] | 10 | "pkg-linux": "pkg src/index.js --public -t node22-linux-x64 -o bin/linux/conllu-gender && chmod +x bin/linux/conllu-gender", |
| 11 | "pkg-macos": "pkg src/index.js --public -t node22-macos-x64 -o bin/macos/conllu-gender", |
| 12 | "pkg-win": "pkg src/index.js --public -t node22-win-x64 -o bin/win/conllu-gender", |
| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 13 | "pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win", |
| 14 | "pkg": "pkg", |
| 15 | "test": "jest", |
| 16 | "start": "node src/index.js" |
| 17 | }, |
| 18 | "author": "Marc Kupietz", |
| 19 | "license": "BSD-2-Clause", |
| 20 | "dependencies": { |
| 21 | "command-line-args": "^5.2.1", |
| 22 | "command-line-usage": "^7.0.1" |
| 23 | }, |
| 24 | "pkg": { |
| 25 | "assets": [ |
| 26 | "package.json" |
| 27 | ], |
| 28 | "scripts": [ |
| 29 | "src/*.js" |
| 30 | ] |
| 31 | }, |
| Marc Kupietz | ebf770e | 2026-03-07 10:56:32 +0100 | [diff] [blame^] | 32 | "jest": { |
| 33 | "testPathIgnorePatterns": [ |
| 34 | "/node_modules/", |
| 35 | "/.gitlab-ci-local/" |
| 36 | ] |
| 37 | }, |
| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 38 | "devDependencies": { |
| Marc Kupietz | ebf770e | 2026-03-07 10:56:32 +0100 | [diff] [blame^] | 39 | "@yao-pkg/pkg": "^6.14.1", |
| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 40 | "child_process": "^1.0.2", |
| Marc Kupietz | ebf770e | 2026-03-07 10:56:32 +0100 | [diff] [blame^] | 41 | "jest": "^29.7.0" |
| Marc Kupietz | b777f9d | 2026-03-07 09:26:20 +0100 | [diff] [blame] | 42 | } |
| 43 | } |