-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.76 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
61
62
63
64
65
66
{
"name": "desearch-js",
"version": "1.4.0",
"description": "Desearch SDK for the Node.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "tsup",
"test": "vitest run",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"build:beta": "cross-env NPM_CONFIG_TAG=beta npm run build",
"version:beta": "npm version prerelease --preid=beta",
"version:stable": "npm version patch",
"publish:beta": "npm run version:beta && npm run build:beta && npm publish --tag beta",
"publish:stable": "npm run version:stable && npm run build && npm publish",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.2",
"cross-env": "^7.0.3",
"prettier": "2.8.4",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"dotenv": "^17.3.1",
"undici": ">=5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Desearch-ai/desearch.js.git"
},
"keywords": [
"desearch"
],
"author": "Desearch AI",
"bugs": {
"url": "https://github.com/Desearch-ai/desearch.js/issues"
},
"homepage": "https://github.com/Desearch-ai/desearch.js#readme"
}