-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "scip-finder",
"version": "0.1.0",
"description": "Fast TypeScript symbol search using SCIP code intelligence indexes",
"type": "module",
"main": "./dist/index.js",
"bin": {
"scip-finder": "./bin/scip-finder.js",
"scip-index": "./bin/scip-index.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && mkdir -p dist/bundle && cp src/bundle/scip.proto dist/bundle/",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest tests/unit/",
"validate:snapshots": "tsx scripts/validate-snapshots.ts"
},
"keywords": [
"scip",
"symbol",
"search",
"cli",
"typescript",
"code-intelligence",
"sourcegraph"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rikby/scip-typescript-finder.git"
},
"homepage": "https://github.com/rikby/scip-typescript-finder#readme",
"bugs": {
"url": "https://github.com/rikby/scip-typescript-finder/issues"
},
"dependencies": {
"commander": "^12.0.0",
"protobufjs": "^8.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}