tpmkms_4wp 8.0.0-beta.3 → 8.0.0-beta.31
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +2542 -1375
- package/common/animals.js +2 -2
- package/common/avatar.js +2 -2
- package/common/characters.js +9 -11
- package/common/colors.instance.json +6646 -3529
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -15
- package/common/concept.js +17 -11
- package/common/countable.js +5 -5
- package/common/crew.instance.json +12534 -6597
- package/common/crew.js +4 -4
- package/common/crew.test.json +714 -452
- package/common/currency.js +7 -7
- package/common/dialogues.js +53 -138
- package/common/dimension.instance.json +246 -265
- package/common/dimension.js +12 -12
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19308 -10008
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +122 -129
- package/common/emotions.js +4 -4
- package/common/events.js +6 -6
- package/common/fastfood.instance.json +219409 -111252
- package/common/fastfood.js +24 -24
- package/common/formulas.instance.json +222 -256
- package/common/formulas.js +14 -14
- package/common/gdefaults.js +13 -13
- package/common/help.js +4 -4
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +48 -58
- package/common/hierarchy.js +12 -16
- package/common/javascript.js +8 -8
- package/common/kirk.instance.json +564 -290
- package/common/kirk.js +2 -2
- package/common/length.instance.json +5153 -4677
- package/common/length.js +2 -2
- package/common/math.instance.json +152 -1169
- package/common/math.js +11 -11
- package/common/meta.js +22 -29
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +3 -3
- package/common/ordering.instance.json +292 -230
- package/common/ordering.js +5 -5
- package/common/people.instance.json +1902 -1015
- package/common/people.js +4 -5
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +57 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7720 -6386
- package/common/pipboy.js +29 -32
- package/common/pokemon.instance.json +3954 -2081
- package/common/pokemon.js +4 -4
- package/common/pos.js +1 -1
- package/common/pressure.instance.json +1265 -1193
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +106 -61
- package/common/properties.js +54 -125
- package/common/punctuation.js +2 -2
- package/common/reports.instance.json +557 -559
- package/common/reports.js +54 -74
- package/common/scorekeeper.js +13 -21
- package/common/sdefaults.js +13 -3
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +564 -290
- package/common/spock.js +2 -2
- package/common/stgame.js +13 -9
- package/common/stm.js +4 -4
- package/common/tell.js +10 -10
- package/common/temperature.instance.json +1297 -1209
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +5 -5
- package/common/time.js +7 -7
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +238 -259
- package/common/ui.js +9 -9
- package/common/weight.instance.json +4905 -4166
- package/common/weight.js +2 -2
- package/common/yesno.js +1 -1
- package/main.js +51 -46
- package/package.json +13 -6
package/common/weight.js
CHANGED
package/common/yesno.js
CHANGED
package/main.js
CHANGED
@@ -3,9 +3,12 @@ const tpm = require('./common/runtime').theprogrammablemind
|
|
3
3
|
const helpers = require('./common/helpers')
|
4
4
|
const currency = require('./common/currency')
|
5
5
|
const numbers = require('./common/numbers')
|
6
|
+
const percentages = require('./common/percentages')
|
6
7
|
const colors = require('./common/colors')
|
7
8
|
const people = require('./common/people')
|
8
9
|
const time = require('./common/time')
|
10
|
+
const yesno = require('./common/yesno')
|
11
|
+
const negation = require('./common/negation')
|
9
12
|
const avatar = require('./common/avatar')
|
10
13
|
const comparable = require('./common/comparable')
|
11
14
|
const concept = require('./common/concept')
|
@@ -15,7 +18,6 @@ const hierarchy = require('./common/hierarchy')
|
|
15
18
|
const ordering = require('./common/ordering')
|
16
19
|
const properties = require('./common/properties')
|
17
20
|
const sizeable = require('./common/sizeable')
|
18
|
-
const yesno = require('./common/yesno')
|
19
21
|
const tokenize = require('./common/tokenize')
|
20
22
|
const dialogues = require('./common/dialogues')
|
21
23
|
const gdefaults = require('./common/gdefaults')
|
@@ -47,50 +49,53 @@ const kirk = require('./common/kirk')
|
|
47
49
|
const spock = require('./common/spock')
|
48
50
|
|
49
51
|
module.exports = {
|
50
|
-
Config: tpm.Config,
|
52
|
+
Config: tpm.Config,
|
53
|
+
helpers,
|
51
54
|
defaultContextCheck: helpers.defaultContextCheck,
|
52
|
-
currency,
|
53
|
-
numbers,
|
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
|
-
|
55
|
+
currency,
|
56
|
+
numbers,
|
57
|
+
percentages,
|
58
|
+
colors,
|
59
|
+
people,
|
60
|
+
time,
|
61
|
+
yesno,
|
62
|
+
negation,
|
63
|
+
avatar,
|
64
|
+
comparable,
|
65
|
+
concept,
|
66
|
+
countable,
|
67
|
+
help,
|
68
|
+
hierarchy,
|
69
|
+
ordering,
|
70
|
+
properties,
|
71
|
+
sizeable,
|
72
|
+
tokenize,
|
73
|
+
dialogues,
|
74
|
+
gdefaults,
|
75
|
+
meta,
|
76
|
+
pos,
|
77
|
+
punctuation,
|
78
|
+
stm,
|
79
|
+
sdefaults,
|
80
|
+
ui,
|
81
|
+
math,
|
82
|
+
formulas,
|
83
|
+
dimension,
|
84
|
+
length,
|
85
|
+
pressure,
|
86
|
+
temperature,
|
87
|
+
weight,
|
88
|
+
animals,
|
89
|
+
edible,
|
90
|
+
javascript,
|
91
|
+
scorekeeper,
|
92
|
+
reports,
|
93
|
+
tell,
|
94
|
+
pipboy,
|
95
|
+
fastfood,
|
96
|
+
characters,
|
97
|
+
crew,
|
98
|
+
stgame,
|
99
|
+
kirk,
|
100
|
+
spock,
|
96
101
|
}
|
package/package.json
CHANGED
@@ -18,9 +18,12 @@
|
|
18
18
|
"includes": [
|
19
19
|
"currency",
|
20
20
|
"numbers",
|
21
|
+
"percentages",
|
21
22
|
"colors",
|
22
23
|
"people",
|
23
|
-
"time"
|
24
|
+
"time",
|
25
|
+
"yesno",
|
26
|
+
"negation"
|
24
27
|
]
|
25
28
|
},
|
26
29
|
{
|
@@ -35,8 +38,7 @@
|
|
35
38
|
"hierarchy",
|
36
39
|
"ordering",
|
37
40
|
"properties",
|
38
|
-
"sizeable"
|
39
|
-
"yesno"
|
41
|
+
"sizeable"
|
40
42
|
]
|
41
43
|
},
|
42
44
|
{
|
@@ -194,6 +196,9 @@
|
|
194
196
|
"common/meta.instance.json",
|
195
197
|
"common/meta.js",
|
196
198
|
"common/meta.test.json",
|
199
|
+
"common/negation.instance.json",
|
200
|
+
"common/negation.js",
|
201
|
+
"common/negation.test.json",
|
197
202
|
"common/numbers.js",
|
198
203
|
"common/numbers.test.json",
|
199
204
|
"common/ordering.instance.json",
|
@@ -202,6 +207,9 @@
|
|
202
207
|
"common/people.instance.json",
|
203
208
|
"common/people.js",
|
204
209
|
"common/people.test.json",
|
210
|
+
"common/percentages.instance.json",
|
211
|
+
"common/percentages.js",
|
212
|
+
"common/percentages.test.json",
|
205
213
|
"common/pipboy.instance.json",
|
206
214
|
"common/pipboy.js",
|
207
215
|
"common/pipboy.test.json",
|
@@ -269,12 +277,11 @@
|
|
269
277
|
"node-fetch": "^2.6.1",
|
270
278
|
"pluralize": "^8.0.0",
|
271
279
|
"scriptjs": "^2.5.9",
|
272
|
-
"underscore": "^1.12.0",
|
273
280
|
"table": "^6.7.1",
|
274
281
|
"base-64": "^1.0.0",
|
275
282
|
"argparse": "^2.0.1",
|
276
|
-
"theprogrammablemind_4wp": "8.0.0-beta.
|
283
|
+
"theprogrammablemind_4wp": "8.0.0-beta.31"
|
277
284
|
},
|
278
|
-
"version": "8.0.0-beta.
|
285
|
+
"version": "8.0.0-beta.31",
|
279
286
|
"license": "UNLICENSED"
|
280
287
|
}
|