@cavelang/highlight 0.27.3 → 0.29.0

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 (2) hide show
  1. package/Authors.md +5 -0
  2. package/package.json +15 -4
package/Authors.md ADDED
@@ -0,0 +1,5 @@
1
+ # Authors
2
+
3
+ By adding their name to this file, all listed authors confirm they have copyright over their contributions to this project and are waiving these rights, placing their work in the public domain in accordance with the CC0 1.0 Universal Public Domain Dedication.
4
+
5
+ - Mirek Rusin (Switzerland)
package/package.json CHANGED
@@ -1,8 +1,18 @@
1
1
  {
2
2
  "name": "@cavelang/highlight",
3
- "version": "0.27.3",
3
+ "version": "0.29.0",
4
4
  "type": "module",
5
5
  "description": "CAVE syntax highlighting — web-tree-sitter over the @cavelang/tree-sitter-cave grammar, rendered to ANSI for terminals.",
6
+ "keywords": [
7
+ "cave",
8
+ "knowledge-graph",
9
+ "knowledge-representation",
10
+ "typescript"
11
+ ],
12
+ "homepage": "https://github.com/mirek/cave#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/mirek/cave/issues"
15
+ },
6
16
  "license": "CC0-1.0",
7
17
  "author": "Mirek Rusin (https://github.com/mirek)",
8
18
  "repository": {
@@ -30,18 +40,19 @@
30
40
  "src",
31
41
  "!src/**/*.test.ts",
32
42
  "README.md",
33
- "License.md"
43
+ "License.md",
44
+ "Authors.md"
34
45
  ],
35
46
  "publishConfig": {
36
47
  "access": "public"
37
48
  },
38
49
  "dependencies": {
39
50
  "web-tree-sitter": "^0.26.10",
40
- "@cavelang/tree-sitter-cave": "0.27.3"
51
+ "@cavelang/tree-sitter-cave": "0.29.0"
41
52
  },
42
53
  "scripts": {
43
54
  "build": "tsc -b",
44
- "test": "node --disable-warning=ExperimentalWarning --test 'test/*.test.ts'",
55
+ "test": "node --disable-warning=ExperimentalWarning --test \"test/*.test.ts\"",
45
56
  "typecheck": "tsc -b"
46
57
  }
47
58
  }