@unrdf/kgn 26.4.2 → 26.4.3
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/package.json +20 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unrdf/kgn",
|
|
3
|
-
"version": "26.4.
|
|
3
|
+
"version": "26.4.3",
|
|
4
4
|
"description": "Deterministic Nunjucks template system with custom filters and frontmatter support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -24,26 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./templates/*": "./src/templates/*"
|
|
26
26
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "unbuild && tsc --emitDeclarationOnly || true",
|
|
29
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
30
|
-
"build:watch": "nodemon --watch src --exec 'npm run build'",
|
|
31
|
-
"test": "vitest run",
|
|
32
|
-
"test:watch": "vitest",
|
|
33
|
-
"test:cucumber": "vitest --config vitest.cucumber.config.js",
|
|
34
|
-
"test:cucumber:watch": "vitest --config vitest.cucumber.config.js --watch",
|
|
35
|
-
"test:all": "npm run test && npm run test:cucumber",
|
|
36
|
-
"test:coverage": "vitest run --coverage",
|
|
37
|
-
"lint": "eslint src/",
|
|
38
|
-
"lint:fix": "eslint src/ --fix",
|
|
39
|
-
"dev": "nodemon --watch src --exec 'echo @unrdf/kgn dev mode - watching for changes'",
|
|
40
|
-
"typecheck": "echo '@unrdf/kgn - JavaScript validation not configured'",
|
|
41
|
-
"clean": "rm -rf coverage .nyc_output dist build",
|
|
42
|
-
"docs:generate": "node bin/generate-docs.mjs"
|
|
43
|
-
},
|
|
44
27
|
"dependencies": {
|
|
45
|
-
"@unrdf/core": "
|
|
46
|
-
"@unrdf/test-utils": "workspace:*",
|
|
28
|
+
"@unrdf/core": "26.4.3",
|
|
47
29
|
"fs-extra": "^11.3.1",
|
|
48
30
|
"gray-matter": "^4.0.3",
|
|
49
31
|
"nunjucks": "^3.2.4",
|
|
@@ -91,5 +73,22 @@
|
|
|
91
73
|
],
|
|
92
74
|
"publishConfig": {
|
|
93
75
|
"access": "public"
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "unbuild && tsc --emitDeclarationOnly || true",
|
|
79
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
80
|
+
"build:watch": "nodemon --watch src --exec 'npm run build'",
|
|
81
|
+
"test": "vitest run",
|
|
82
|
+
"test:watch": "vitest",
|
|
83
|
+
"test:cucumber": "vitest --config vitest.cucumber.config.js",
|
|
84
|
+
"test:cucumber:watch": "vitest --config vitest.cucumber.config.js --watch",
|
|
85
|
+
"test:all": "npm run test && npm run test:cucumber",
|
|
86
|
+
"test:coverage": "vitest run --coverage",
|
|
87
|
+
"lint": "eslint src/",
|
|
88
|
+
"lint:fix": "eslint src/ --fix",
|
|
89
|
+
"dev": "nodemon --watch src --exec 'echo @unrdf/kgn dev mode - watching for changes'",
|
|
90
|
+
"typecheck": "echo '@unrdf/kgn - JavaScript validation not configured'",
|
|
91
|
+
"clean": "rm -rf coverage .nyc_output dist build",
|
|
92
|
+
"docs:generate": "node bin/generate-docs.mjs"
|
|
94
93
|
}
|
|
95
|
-
}
|
|
94
|
+
}
|