tpmkms 8.0.0-beta.1 → 8.0.0-beta.10
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.
- package/common/animals.instance.json +2542 -1375
- package/common/colors.instance.json +6796 -3773
- package/common/crew.instance.json +12534 -6597
- package/common/crew.test.json +714 -452
- package/common/dialogues.js +2 -18
- package/common/dimension.instance.json +242 -261
- package/common/dimension.test.json +314 -502
- package/common/edible.instance.json +19282 -10010
- package/common/emotions.instance.json +122 -129
- package/common/fastfood.instance.json +218879 -110575
- package/common/formulas.instance.json +216 -250
- package/common/formulas.js +2 -2
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +2 -1
- package/common/kirk.instance.json +564 -290
- package/common/length.instance.json +5153 -4677
- package/common/math.instance.json +140 -1157
- package/common/math.js +4 -4
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/ordering.instance.json +292 -230
- package/common/people.instance.json +1902 -1015
- package/common/pipboy.instance.json +7690 -6356
- package/common/pokemon.instance.json +3954 -2081
- package/common/pressure.instance.json +1265 -1193
- package/common/properties.instance.json +106 -61
- package/common/properties.js +2 -0
- package/common/reports.instance.json +557 -559
- package/common/spock.instance.json +564 -290
- package/common/temperature.instance.json +1297 -1209
- package/common/ui.instance.json +238 -259
- package/common/weight.instance.json +4905 -4166
- package/main.js +49 -46
- package/package.json +9 -6
package/main.js
CHANGED
@@ -6,6 +6,8 @@ const numbers = require('./common/numbers')
|
|
6
6
|
const colors = require('./common/colors')
|
7
7
|
const people = require('./common/people')
|
8
8
|
const time = require('./common/time')
|
9
|
+
const yesno = require('./common/yesno')
|
10
|
+
const negation = require('./common/negation')
|
9
11
|
const avatar = require('./common/avatar')
|
10
12
|
const comparable = require('./common/comparable')
|
11
13
|
const concept = require('./common/concept')
|
@@ -15,7 +17,6 @@ const hierarchy = require('./common/hierarchy')
|
|
15
17
|
const ordering = require('./common/ordering')
|
16
18
|
const properties = require('./common/properties')
|
17
19
|
const sizeable = require('./common/sizeable')
|
18
|
-
const yesno = require('./common/yesno')
|
19
20
|
const tokenize = require('./common/tokenize')
|
20
21
|
const dialogues = require('./common/dialogues')
|
21
22
|
const gdefaults = require('./common/gdefaults')
|
@@ -47,50 +48,52 @@ const kirk = require('./common/kirk')
|
|
47
48
|
const spock = require('./common/spock')
|
48
49
|
|
49
50
|
module.exports = {
|
50
|
-
Config: tpm.Config,
|
51
|
+
Config: tpm.Config,
|
52
|
+
helpers,
|
51
53
|
defaultContextCheck: helpers.defaultContextCheck,
|
52
|
-
currency,
|
53
|
-
numbers,
|
54
|
-
colors,
|
55
|
-
people,
|
56
|
-
time,
|
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
|
-
|
54
|
+
currency,
|
55
|
+
numbers,
|
56
|
+
colors,
|
57
|
+
people,
|
58
|
+
time,
|
59
|
+
yesno,
|
60
|
+
negation,
|
61
|
+
avatar,
|
62
|
+
comparable,
|
63
|
+
concept,
|
64
|
+
countable,
|
65
|
+
help,
|
66
|
+
hierarchy,
|
67
|
+
ordering,
|
68
|
+
properties,
|
69
|
+
sizeable,
|
70
|
+
tokenize,
|
71
|
+
dialogues,
|
72
|
+
gdefaults,
|
73
|
+
meta,
|
74
|
+
pos,
|
75
|
+
punctuation,
|
76
|
+
stm,
|
77
|
+
sdefaults,
|
78
|
+
ui,
|
79
|
+
math,
|
80
|
+
formulas,
|
81
|
+
dimension,
|
82
|
+
length,
|
83
|
+
pressure,
|
84
|
+
temperature,
|
85
|
+
weight,
|
86
|
+
animals,
|
87
|
+
edible,
|
88
|
+
javascript,
|
89
|
+
scorekeeper,
|
90
|
+
reports,
|
91
|
+
tell,
|
92
|
+
pipboy,
|
93
|
+
fastfood,
|
94
|
+
characters,
|
95
|
+
crew,
|
96
|
+
stgame,
|
97
|
+
kirk,
|
98
|
+
spock,
|
96
99
|
}
|
package/package.json
CHANGED
@@ -20,7 +20,9 @@
|
|
20
20
|
"numbers",
|
21
21
|
"colors",
|
22
22
|
"people",
|
23
|
-
"time"
|
23
|
+
"time",
|
24
|
+
"yesno",
|
25
|
+
"negation"
|
24
26
|
]
|
25
27
|
},
|
26
28
|
{
|
@@ -35,8 +37,7 @@
|
|
35
37
|
"hierarchy",
|
36
38
|
"ordering",
|
37
39
|
"properties",
|
38
|
-
"sizeable"
|
39
|
-
"yesno"
|
40
|
+
"sizeable"
|
40
41
|
]
|
41
42
|
},
|
42
43
|
{
|
@@ -194,6 +195,9 @@
|
|
194
195
|
"common/meta.instance.json",
|
195
196
|
"common/meta.js",
|
196
197
|
"common/meta.test.json",
|
198
|
+
"common/negation.instance.json",
|
199
|
+
"common/negation.js",
|
200
|
+
"common/negation.test.json",
|
197
201
|
"common/numbers.js",
|
198
202
|
"common/numbers.test.json",
|
199
203
|
"common/ordering.instance.json",
|
@@ -269,12 +273,11 @@
|
|
269
273
|
"node-fetch": "^2.6.1",
|
270
274
|
"pluralize": "^8.0.0",
|
271
275
|
"scriptjs": "^2.5.9",
|
272
|
-
"underscore": "^1.12.0",
|
273
276
|
"table": "^6.7.1",
|
274
277
|
"base-64": "^1.0.0",
|
275
278
|
"argparse": "^2.0.1",
|
276
|
-
"theprogrammablemind": "8.0.0-beta.
|
279
|
+
"theprogrammablemind": "8.0.0-beta.10"
|
277
280
|
},
|
278
|
-
"version": "8.0.0-beta.
|
281
|
+
"version": "8.0.0-beta.10",
|
279
282
|
"license": "UNLICENSED"
|
280
283
|
}
|