-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 988 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
{
"name": "@searchcode/core",
"description": "HTTP client for the searchcode.ai API — search the source code of the public web, identify site technologies, and map operators.",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"author": "searchcode.ai <hello@searchcode.ai>",
"homepage": "https://searchcode.ai/docs/",
"keywords": [
"searchcode",
"source-code-search",
"website-technology",
"technology-lookup",
"web-intelligence",
"builtwith-alternative",
"publicwww-alternative"
],
"repository": {
"type": "git",
"url": "git+https://github.com/searchcode-ai/searchcode-core.git"
},
"bugs": {
"url": "https://github.com/searchcode-ai/searchcode-core/issues"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"test": "node --test test/*.test.js"
}
}