@keymanapp/kmc-generate 18.0.138-alpha
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/build/src/abstract-generator.d.ts +167 -0
- package/build/src/abstract-generator.d.ts.map +1 -0
- package/build/src/abstract-generator.js +137 -0
- package/build/src/abstract-generator.js.map +1 -0
- package/build/src/basic-generator.d.ts +34 -0
- package/build/src/basic-generator.d.ts.map +1 -0
- package/build/src/basic-generator.js +119 -0
- package/build/src/basic-generator.js.map +1 -0
- package/build/src/generator-messages.d.ts +33 -0
- package/build/src/generator-messages.d.ts.map +1 -0
- package/build/src/generator-messages.js +34 -0
- package/build/src/generator-messages.js.map +1 -0
- package/build/src/keyman-keyboard-generator.d.ts +32 -0
- package/build/src/keyman-keyboard-generator.d.ts.map +1 -0
- package/build/src/keyman-keyboard-generator.js +89 -0
- package/build/src/keyman-keyboard-generator.js.map +1 -0
- package/build/src/ldml-keyboard-generator.d.ts +25 -0
- package/build/src/ldml-keyboard-generator.d.ts.map +1 -0
- package/build/src/ldml-keyboard-generator.js +52 -0
- package/build/src/ldml-keyboard-generator.js.map +1 -0
- package/build/src/lexical-model-generator.d.ts +25 -0
- package/build/src/lexical-model-generator.d.ts.map +1 -0
- package/build/src/lexical-model-generator.js +50 -0
- package/build/src/lexical-model-generator.js.map +1 -0
- package/build/src/main.d.ts +6 -0
- package/build/src/main.d.ts.map +1 -0
- package/build/src/main.js +10 -0
- package/build/src/main.js.map +1 -0
- package/build/src/template/kmn-keyboard/HISTORY.md +6 -0
- package/build/src/template/kmn-keyboard/LICENSE.md +21 -0
- package/build/src/template/kmn-keyboard/README.md +18 -0
- package/build/src/template/kmn-keyboard/keyboard.kpj +8 -0
- package/build/src/template/kmn-keyboard/source/keyboard.keyman-touch-layout +655 -0
- package/build/src/template/kmn-keyboard/source/keyboard.kmn +14 -0
- package/build/src/template/kmn-keyboard/source/keyboard.kps +47 -0
- package/build/src/template/kmn-keyboard/source/keyboard.kvks +8 -0
- package/build/src/template/kmn-keyboard/source/readme.htm +24 -0
- package/build/src/template/kmn-keyboard/source/welcome.htm +26 -0
- package/build/src/template/ldml-keyboard/HISTORY.md +6 -0
- package/build/src/template/ldml-keyboard/LICENSE.md +21 -0
- package/build/src/template/ldml-keyboard/README.md +18 -0
- package/build/src/template/ldml-keyboard/keyboard.kpj +8 -0
- package/build/src/template/ldml-keyboard/source/keyboard.kps +44 -0
- package/build/src/template/ldml-keyboard/source/keyboard.xml +40 -0
- package/build/src/template/ldml-keyboard/source/readme.htm +24 -0
- package/build/src/template/ldml-keyboard/source/welcome.htm +26 -0
- package/build/src/template/wordlist-lexical-model/HISTORY.md +6 -0
- package/build/src/template/wordlist-lexical-model/LICENSE.md +21 -0
- package/build/src/template/wordlist-lexical-model/README.md +17 -0
- package/build/src/template/wordlist-lexical-model/model.kpj +10 -0
- package/build/src/template/wordlist-lexical-model/source/model.kps +42 -0
- package/build/src/template/wordlist-lexical-model/source/model.ts +14 -0
- package/build/src/template/wordlist-lexical-model/source/readme.htm +24 -0
- package/build/src/template/wordlist-lexical-model/source/welcome.htm +28 -0
- package/build/src/template/wordlist-lexical-model/source/wordlist.tsv +16 -0
- package/package.json +65 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>$NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>$NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<p>$COPYRIGHT</p>
|
|
22
|
+
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>Start Using $NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>Start Using $NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<h1>Keyboard Layout</h1>
|
|
22
|
+
|
|
23
|
+
<!-- Insert Keyboard Layout Images or HTML here -->
|
|
24
|
+
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
$FULLCOPYRIGHT
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
$NAME keyboard
|
|
2
|
+
==============
|
|
3
|
+
|
|
4
|
+
Description
|
|
5
|
+
-----------
|
|
6
|
+
$DESCRIPTION
|
|
7
|
+
|
|
8
|
+
Links
|
|
9
|
+
-----
|
|
10
|
+
Keyboard Homepage: https://keyman.com/keyboards/$ID
|
|
11
|
+
|
|
12
|
+
Copyright
|
|
13
|
+
---------
|
|
14
|
+
See [LICENSE.md](LICENSE.md)
|
|
15
|
+
|
|
16
|
+
Supported Platforms
|
|
17
|
+
-------------------
|
|
18
|
+
$PLATFORMS_DOTLIST_README
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Package>
|
|
3
|
+
<System>
|
|
4
|
+
<KeymanDeveloperVersion>$KEYMANVERSION</KeymanDeveloperVersion>
|
|
5
|
+
<FileVersion>7.0</FileVersion>
|
|
6
|
+
</System>
|
|
7
|
+
<Options>
|
|
8
|
+
<ReadMeFile>readme.htm</ReadMeFile>
|
|
9
|
+
<LicenseFile>..\LICENSE.md</LicenseFile>
|
|
10
|
+
<WelcomeFile>welcome.htm</WelcomeFile>
|
|
11
|
+
<FollowKeyboardVersion/>
|
|
12
|
+
</Options>
|
|
13
|
+
<Info>
|
|
14
|
+
<Name URL="">$NAME</Name>
|
|
15
|
+
<Copyright URL="">$COPYRIGHT</Copyright>
|
|
16
|
+
<Author URL="">$AUTHOR</Author>
|
|
17
|
+
<Description URL="">$DESCRIPTION</Description>
|
|
18
|
+
</Info>
|
|
19
|
+
<Files>
|
|
20
|
+
<File>
|
|
21
|
+
<Name>..\build\$ID.kmx</Name>
|
|
22
|
+
</File>
|
|
23
|
+
<File>
|
|
24
|
+
<Name>..\build\$ID.kvk</Name>
|
|
25
|
+
</File>
|
|
26
|
+
<File>
|
|
27
|
+
<Name>welcome.htm</Name>
|
|
28
|
+
</File>
|
|
29
|
+
<File>
|
|
30
|
+
<Name>readme.htm</Name>
|
|
31
|
+
</File>
|
|
32
|
+
<File>
|
|
33
|
+
<Name>..\LICENSE.md</Name>
|
|
34
|
+
</File>
|
|
35
|
+
</Files>
|
|
36
|
+
<Keyboards>
|
|
37
|
+
<Keyboard>
|
|
38
|
+
<Name>$NAME</Name>
|
|
39
|
+
<ID>$ID</ID>
|
|
40
|
+
<Version>$VERSION</Version>
|
|
41
|
+
$PACKAGE_LANGUAGES
|
|
42
|
+
</Keyboard>
|
|
43
|
+
</Keyboards>
|
|
44
|
+
</Package>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<keyboard3 xmlns="https://schemas.unicode.org/cldr/45/keyboard3" locale="$LANG_TAG" conformsTo="45">
|
|
3
|
+
<info author="$AUTHOR" name="$NAME"/>
|
|
4
|
+
<version number="1.0.0"/>
|
|
5
|
+
$ADDITIONAL_LANG_TAGS
|
|
6
|
+
<keys>
|
|
7
|
+
<import base="cldr" path="45/keys-Zyyy-punctuation.xml"/>
|
|
8
|
+
<import base="cldr" path="45/keys-Zyyy-currency.xml"/>
|
|
9
|
+
</keys>
|
|
10
|
+
<layers formId="us">
|
|
11
|
+
<layer modifiers="none">
|
|
12
|
+
<row keys="grave 1 2 3 4 5 6 7 8 9 0 hyphen equal"/>
|
|
13
|
+
<row keys="q w e r t y u i o p open-square close-square backslash"/>
|
|
14
|
+
<row keys="a s d f g h j k l semi-colon apos"/>
|
|
15
|
+
<row keys="z x c v b n m comma period slash"/>
|
|
16
|
+
<row keys="space"/>
|
|
17
|
+
</layer>
|
|
18
|
+
<layer modifiers="shift">
|
|
19
|
+
<row keys="tilde bang at hash dollar percent caret amp asterisk open-paren close-paren underscore plus"/>
|
|
20
|
+
<row keys="Q W E R T Y U I O P open-curly close-curly pipe"/>
|
|
21
|
+
<row keys="A S D F G H J K L colon double-quote"/>
|
|
22
|
+
<row keys="Z X C V B N M open-angle close-angle question"/>
|
|
23
|
+
<row keys="space"/>
|
|
24
|
+
</layer>
|
|
25
|
+
<layer modifiers="caps">
|
|
26
|
+
<row keys="grave 1 2 3 4 5 6 7 8 9 0 hyphen equal"/>
|
|
27
|
+
<row keys="Q W E R T Y U I O P open-square close-square backslash"/>
|
|
28
|
+
<row keys="A S D F G H J K L semi-colon apos"/>
|
|
29
|
+
<row keys="Z X C V B N M comma period slash"/>
|
|
30
|
+
<row keys="space"/>
|
|
31
|
+
</layer>
|
|
32
|
+
<layer modifiers="shift caps">
|
|
33
|
+
<row keys="tilde bang at hash dollar percent caret amp asterisk open-paren close-paren underscore plus"/>
|
|
34
|
+
<row keys="q w e r t y u i o p open-curly close-curly pipe"/>
|
|
35
|
+
<row keys="a s d f g h j k l colon double-quote"/>
|
|
36
|
+
<row keys="z x c v b n m open-angle close-angle question"/>
|
|
37
|
+
<row keys="space"/>
|
|
38
|
+
</layer>
|
|
39
|
+
</layers>
|
|
40
|
+
</keyboard3>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>$NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>$NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<p>$COPYRIGHT</p>
|
|
22
|
+
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>Start Using $NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>Start Using $NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<h1>Keyboard Layout</h1>
|
|
22
|
+
|
|
23
|
+
<!-- Insert Keyboard Layout Images or HTML here -->
|
|
24
|
+
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
$FULLCOPYRIGHT
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<KeymanDeveloperProject>
|
|
3
|
+
<Options>
|
|
4
|
+
<Version>2.0</Version>
|
|
5
|
+
<SkipMetadataFiles>True</SkipMetadataFiles>
|
|
6
|
+
<ProjectType>lexicalmodel</ProjectType>
|
|
7
|
+
<CompilerWarningsAsErrors>True</CompilerWarningsAsErrors>
|
|
8
|
+
<CheckFilenameConventions>True</CheckFilenameConventions>
|
|
9
|
+
</Options>
|
|
10
|
+
</KeymanDeveloperProject>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Package>
|
|
3
|
+
<System>
|
|
4
|
+
<KeymanDeveloperVersion>$KEYMANVERSION</KeymanDeveloperVersion>
|
|
5
|
+
<FileVersion>12.0</FileVersion>
|
|
6
|
+
</System>
|
|
7
|
+
<Options>
|
|
8
|
+
<ExecuteProgram></ExecuteProgram>
|
|
9
|
+
<ReadMeFile>readme.htm</ReadMeFile>
|
|
10
|
+
<LicenseFile>..\LICENSE.md</LicenseFile>
|
|
11
|
+
</Options>
|
|
12
|
+
<Info>
|
|
13
|
+
<Name URL="">$NAME</Name>
|
|
14
|
+
<Copyright URL="">$COPYRIGHT</Copyright>
|
|
15
|
+
<Author URL="">$AUTHOR</Author>
|
|
16
|
+
<Version URL="">$VERSION</Version>
|
|
17
|
+
<Description URL="">$DESCRIPTION</Description>
|
|
18
|
+
</Info>
|
|
19
|
+
<Files>
|
|
20
|
+
<File>
|
|
21
|
+
<Name>..\build\$ID.model.js</Name>
|
|
22
|
+
</File>
|
|
23
|
+
<File>
|
|
24
|
+
<Name>welcome.htm</Name>
|
|
25
|
+
</File>
|
|
26
|
+
<File>
|
|
27
|
+
<Name>readme.htm</Name>
|
|
28
|
+
</File>
|
|
29
|
+
<File>
|
|
30
|
+
<Name>..\LICENSE.md</Name>
|
|
31
|
+
</File>
|
|
32
|
+
</Files>
|
|
33
|
+
<Keyboards/>
|
|
34
|
+
<LexicalModels>
|
|
35
|
+
<LexicalModel>
|
|
36
|
+
<Name>$NAME</Name>
|
|
37
|
+
<ID>$ID</ID>
|
|
38
|
+
$PACKAGE_LANGUAGES
|
|
39
|
+
</LexicalModel>
|
|
40
|
+
</LexicalModels>
|
|
41
|
+
<RelatedPackages/>
|
|
42
|
+
</Package>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
$NAME $VERSION
|
|
3
|
+
|
|
4
|
+
This is a minimal lexical model source that uses a tab delimited wordlist.
|
|
5
|
+
See documentation online at https://help.keyman.com/developer/ for
|
|
6
|
+
additional parameters.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
const source: LexicalModelSource = {
|
|
10
|
+
format: 'trie-1.0',
|
|
11
|
+
wordBreaker: 'default',
|
|
12
|
+
sources: ['wordlist.tsv'],
|
|
13
|
+
};
|
|
14
|
+
export default source;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>$NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>$NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<p>$COPYRIGHT</p>
|
|
22
|
+
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>Start Using $NAME</title>
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
p { font: 10pt Tahoma; }
|
|
9
|
+
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
|
|
10
|
+
h2 { font: bold 12pt Tahoma; color: #4444cc; }
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
|
|
15
|
+
<h1>Start Using $NAME</h1>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
$DESCRIPTION
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<h1>Wordlist Model Documentation</h1>
|
|
22
|
+
|
|
23
|
+
<!-- Insert HTML documentation here -->
|
|
24
|
+
|
|
25
|
+
<p>$COPYRIGHT</p>
|
|
26
|
+
|
|
27
|
+
</body>
|
|
28
|
+
</html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#
|
|
2
|
+
# $NAME $VERSION generated from template.
|
|
3
|
+
#
|
|
4
|
+
# This is an example tab-separated wordlist file that can be edited in a spreadsheet
|
|
5
|
+
# program or regenerated from a wordlist tool. See lexical model documentation at
|
|
6
|
+
# https://help.keyman.com/developer/ for tools.
|
|
7
|
+
#
|
|
8
|
+
# Columns
|
|
9
|
+
# =======
|
|
10
|
+
# WORD FREQUENCY (Optional)NOTES
|
|
11
|
+
#
|
|
12
|
+
the 100
|
|
13
|
+
example 5
|
|
14
|
+
hello 10
|
|
15
|
+
world 8
|
|
16
|
+
wordlist 3
|
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keymanapp/kmc-generate",
|
|
3
|
+
"description": "Keyman Developer generate module",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"keyboard",
|
|
6
|
+
"keyman",
|
|
7
|
+
"ldml",
|
|
8
|
+
"unicode"
|
|
9
|
+
],
|
|
10
|
+
"type": "module",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./build/src/main.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"/build/src/"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "gosh ./build.sh build",
|
|
19
|
+
"lint": "eslint .",
|
|
20
|
+
"test": "gosh ./build.sh test"
|
|
21
|
+
},
|
|
22
|
+
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/keymanapp/keyman/issues"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@keymanapp/common-types": "18.0.138-alpha",
|
|
29
|
+
"@keymanapp/developer-utils": "18.0.138-alpha",
|
|
30
|
+
"@keymanapp/keyman-version": "18.0.138-alpha"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@keymanapp/developer-test-helpers": "18.0.138-alpha",
|
|
34
|
+
"@keymanapp/resources-gosh": "18.0.138-alpha",
|
|
35
|
+
"@types/mocha": "^10.0.0",
|
|
36
|
+
"@types/node": "^20.4.1",
|
|
37
|
+
"@types/semver": "^7.3.12",
|
|
38
|
+
"c8": "^7.12.0",
|
|
39
|
+
"chalk": "^2.4.2",
|
|
40
|
+
"mocha": "^10.0.0",
|
|
41
|
+
"typescript": "^5.4.5"
|
|
42
|
+
},
|
|
43
|
+
"mocha": {
|
|
44
|
+
"spec": "build/test/**/test-*.js",
|
|
45
|
+
"require": [
|
|
46
|
+
"source-map-support/register"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"c8": {
|
|
50
|
+
"all": true,
|
|
51
|
+
"src": [
|
|
52
|
+
"src/"
|
|
53
|
+
],
|
|
54
|
+
"exclude-after-remap": true,
|
|
55
|
+
"exclude": [
|
|
56
|
+
"test/",
|
|
57
|
+
"src/template/"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
63
|
+
},
|
|
64
|
+
"version": "18.0.138-alpha"
|
|
65
|
+
}
|