blob: 4ff2371312d05905eb8b2d30a5319b33307c72a7 [file] [log] [blame]
Marc Kupietzb777f9d2026-03-07 09:26:20 +01001{
2 "name": "conllu-gender",
Marc Kupietz35e0aa82026-03-07 10:31:23 +01003 "version": "0.1.0",
Marc Kupietzb777f9d2026-03-07 09:26:20 +01004 "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": {
10 "pkg-linux": "pkg src/index.js --public -t node18-linux-x64 -o bin/linux/conllu-gender && chmod +x bin/linux/conllu-gender",
11 "pkg-macos": "pkg src/index.js --public -t node18-macos-x64 -o bin/macos/conllu-gender",
12 "pkg-win": "pkg src/index.js --public -t node18-win-x64 -o bin/win/conllu-gender",
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 },
32 "devDependencies": {
33 "child_process": "^1.0.2",
34 "jest": "^29.7.0",
35 "pkg": "^5.8.1"
36 }
37}