-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 917 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@LLMTooling/universal-ctags-node",
"version": "0.1.0",
"description": "Node wrapper for universal-ctags with pre-built binaries",
"main": "lib/index.js",
"scripts": {
"postinstall": "node lib/postinstall.js",
"test": "node test/basic.test.js",
"lint": "eslint lib test",
"lint:fix": "eslint lib test --fix"
},
"keywords": [
"ctags",
"universal-ctags",
"code-search",
"mcp"
],
"author": "GhostTypes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LLMTooling/universal-ctags-node"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"lib/**/*.js",
"README.md",
"LICENSE"
],
"dependencies": {
"adm-zip": "^0.5.16",
"tar": "^7.4.3"
},
"devDependencies": {
"eslint": "^9.17.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
}
}