-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "@perplexity-ai/perplexity_ai",
"version": "0.38.5",
"description": "The official TypeScript library for the Perplexity API",
"author": "Perplexity <api@perplexity.ai>",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"type": "module",
"repository": "github:perplexityai/perplexity-node",
"license": "Apache-2.0",
"packageManager": "pnpm@11.17.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"src"
],
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^26.1.1",
"lefthook": "^2.1.10",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"publint": "^0.3.22",
"published-sdk": "npm:@perplexity-ai/perplexity_ai@0.37.0",
"typescript": "7.0.2",
"typescript-5": "npm:typescript@5.6.1-rc"
},
"overrides": {
"minimatch": "^9.0.5"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*.js": {
"import": "./dist/*.js"
},
"./*.mjs": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
}
}