@atproto/lex 0.0.0 → 0.0.2

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.
Files changed (3) hide show
  1. package/LICENSE.txt +7 -0
  2. package/bin/lex +0 -2
  3. package/package.json +7 -7
package/LICENSE.txt ADDED
@@ -0,0 +1,7 @@
1
+ Dual MIT/Apache-2.0 License
2
+
3
+ Copyright (c) 2022-2025 Bluesky Social PBC, and Contributors
4
+
5
+ Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>).
6
+
7
+ Downstream projects and end users may chose either license individually, or both together, at their discretion. The motivation for this dual-licensing is the additional software patent assurance provided by Apache 2.0.
package/bin/lex CHANGED
@@ -21,7 +21,6 @@ yargs(hideBin(process.argv))
21
21
  (yargs) => {
22
22
  return yargs.strict().options({
23
23
  lexicons: {
24
- array: true,
25
24
  type: 'string',
26
25
  demandOption: true,
27
26
  default: './lexicons',
@@ -125,7 +124,6 @@ yargs(hideBin(process.argv))
125
124
  'error if the installed lexicons do not match the CIDs in the lexicons.json manifest',
126
125
  },
127
126
  lexicons: {
128
- array: true,
129
127
  type: 'string',
130
128
  demandOption: true,
131
129
  default: './lexicons',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/lex",
3
- "version": "0.0.0",
3
+ "version": "0.0.2",
4
4
  "license": "MIT",
5
5
  "description": "Lexicon tooling for AT",
6
6
  "keywords": [
@@ -35,11 +35,11 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@atproto/lex-builder": "workspace:*",
39
- "@atproto/lex-client": "workspace:*",
40
- "@atproto/lex-installer": "workspace:*",
41
- "@atproto/lex-schema": "workspace:*",
42
- "yargs": "^17.0.0"
38
+ "yargs": "^17.0.0",
39
+ "@atproto/lex-builder": "0.0.2",
40
+ "@atproto/lex-client": "0.0.1",
41
+ "@atproto/lex-installer": "0.0.2",
42
+ "@atproto/lex-schema": "0.0.1"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/yargs": "^17.0.33",
@@ -49,4 +49,4 @@
49
49
  "build": "./bin/lex build --clear --lexicons ./lexicons --out ./tests/lexicons -- ignore additional npm args",
50
50
  "test": "jest"
51
51
  }
52
- }
52
+ }