@plurnk/plurnk-mimetypes-text-dockerfile 0.2.0 → 0.2.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.
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurnk/plurnk-mimetypes-text-dockerfile",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "text/x-dockerfile mimetype handler for plurnk-service. Tier 2: tree-sitter-dockerfile grammar built to WASM and shipped pre-built in this package.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=
|
|
11
|
+
"node": ">=26"
|
|
12
12
|
},
|
|
13
13
|
"plurnk": {
|
|
14
14
|
"kind": "mimetype",
|
|
@@ -45,19 +45,21 @@
|
|
|
45
45
|
"test:lint": "tsc --noEmit",
|
|
46
46
|
"test:unit": "node --test src/**/*.test.ts",
|
|
47
47
|
"test": "npm run test:lint && npm run test:unit",
|
|
48
|
-
"prepare": "npm run build",
|
|
49
|
-
"verify:wasm": "node scripts/verify-wasm.mjs"
|
|
48
|
+
"prepare": "npm run build && (git config core.hooksPath .githooks || true)",
|
|
49
|
+
"verify:wasm": "node scripts/verify-wasm.mjs",
|
|
50
|
+
"deps:fresh": "npm outdated",
|
|
51
|
+
"prepublishOnly": "npm run deps:fresh && npm audit --audit-level=moderate && npm test"
|
|
50
52
|
},
|
|
51
53
|
"dependencies": {
|
|
52
|
-
"web-tree-sitter": "^0.
|
|
54
|
+
"web-tree-sitter": "^0.26.9"
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
55
|
-
"@
|
|
57
|
+
"@plurnk/plurnk-mimetypes": "^0.15.0 || ^0.16.0",
|
|
58
|
+
"@types/node": "^26.0.0",
|
|
56
59
|
"tree-sitter-cli": "^0.26.9",
|
|
57
|
-
"typescript": "^6.0.3"
|
|
58
|
-
"@plurnk/plurnk-mimetypes": "^0.15.17"
|
|
60
|
+
"typescript": "^6.0.3"
|
|
59
61
|
},
|
|
60
62
|
"peerDependencies": {
|
|
61
|
-
"@plurnk/plurnk-mimetypes": "^0.
|
|
63
|
+
"@plurnk/plurnk-mimetypes": "^0.16.0"
|
|
62
64
|
}
|
|
63
65
|
}
|