-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "human-language",
"version": "0.2.0",
"description": "Human Language: a Wikidata-backed library, CLI and HTTP microservice for transforming English text into sequences of Wikidata entities (Q) and properties (P), with alphabet/dictionary/ontology browsing and IPA support.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/link-assistant/human-language.git"
},
"homepage": "https://link-assistant.github.io/human-language/",
"bugs": {
"url": "https://github.com/link-assistant/human-language/issues"
},
"author": "link-assistant",
"keywords": [
"wikidata",
"linked-data",
"semantic-web",
"ipa",
"ontology",
"transformer",
"knowledge-graph",
"natural-language",
"human-language"
],
"type": "module",
"main": "./js/src/index.js",
"types": "./js/src/index.d.ts",
"bin": {
"human-language": "./js/src/cli.js"
},
"exports": {
".": {
"types": "./js/src/index.d.ts",
"import": "./js/src/index.js",
"default": "./js/src/index.js"
},
"./server": {
"import": "./js/src/server.js",
"default": "./js/src/server.js"
},
"./cli": {
"import": "./js/src/cli.js",
"default": "./js/src/cli.js"
},
"./transform": {
"import": "./js/src/transformation/text-to-qp-transformer.js"
},
"./transform/lino": {
"import": "./js/src/transformation/lino-format.js"
},
"./generate": {
"import": "./js/src/generation/qp-to-text.js"
},
"./generate/constructors": {
"import": "./js/src/generation/constructors.js"
},
"./wikidata": {
"import": "./js/src/wikidata-api.js"
},
"./wikidata/browser": {
"import": "./js/src/wikidata-api-browser.js"
},
"./cache": {
"import": "./js/src/unified-cache.js"
},
"./cache/browser": {
"import": "./js/src/unified-cache-browser.js"
},
"./settings": {
"import": "./js/src/settings.js"
},
"./routing": {
"import": "./js/src/app/routing.js"
},
"./ipa": {
"import": "./js/src/app/ipa.js"
},
"./config": {
"import": "./js/src/config.js"
}
},
"files": [
"js/src/**/*.js",
"js/src/**/*.jsx",
"js/src/**/*.d.ts",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"serve": "node js/scripts/serve-static.mjs",
"start": "node js/src/server.js",
"cli": "node js/src/cli.js",
"test": "node js/scripts/run-unit-tests.mjs",
"test:e2e": "playwright test --config js/tests/e2e/playwright.config.mjs",
"test:e2e:local": "node js/scripts/run-e2e-local.mjs",
"test:unit": "node js/scripts/run-unit-tests.mjs",
"test:syntax": "node js/scripts/check-mjs-syntax.mjs",
"check:web-archive": "node js/scripts/check-web-archive.mjs",
"prepack": "node js/scripts/check-mjs-syntax.mjs"
},
"devDependencies": {
"@playwright/test": "^1.49.1"
},
"dependencies": {
"lino-arguments": "^0.3.0",
"lino-objects-codec": "^0.4.0"
}
}