-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "@amlhubs/uima",
"version": "0.0.1",
"description": "OASIS UIMA 1.0 (2009) — Unstructured Information Management Architecture — as a typed TypeScript metamodel. Surfaces the UIMA Component Descriptor metamodel (AnalysisEngine, CASConsumer, CASMultiplier, CollectionReader, FlowController), the Type System (TypeSystem, Type, Feature, Subtype/Supertype), the Common Analysis Structure (CAS, View, SofA, AnnotationFS, FeatureStructure), Capabilities/Resources/External Resource descriptors, and Operational Properties (modifiesCas, multipleDeploymentAllowed, outputsNewCASes). Pure UIMA Component Descriptor metamodel; UIMA-AS scale-out, Ruta rule language, and DUCC orchestration are out of scope for this 0.0.1 release. Apache UIMA 3.x reference implementation alignment; ISO/IEC 24618 architectural compliance.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amlhubs/uima.git",
"directory": "."
},
"keywords": [
"uima",
"unstructured-information-management-architecture",
"oasis",
"oasis-uima",
"oasis-uima-1.0",
"apache-uima",
"iso-iec-24618",
"metamodel",
"metaclass",
"common-analysis-structure",
"cas",
"type-system",
"analysis-engine",
"annotation",
"feature-structure",
"sofa",
"subject-of-analysis",
"collection-reader",
"cas-consumer",
"cas-multiplier",
"flow-controller",
"nlp",
"text-analytics",
"information-extraction",
"agentic-modeling-language",
"aml",
"amlhubs",
"agenihub"
],
"peerDependencies": {
"@amlhubs/uml": "^0.0.2",
"@amlhubs/mof": "^0.0.1",
"@amlhubs/xmi": "^0.0.1"
},
"devDependencies": {
"@amlhubs/uml": "^0.0.2",
"@amlhubs/mof": "^0.0.1",
"@amlhubs/xmi": "^0.0.1",
"typescript": "^5.4.0"
},
"license": "MIT"
}