-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 KB
/
package.json
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
{
"name": "pinecone-client",
"version": "2.0.0",
"description": "Pinecone.io client powered by fetch",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "dexaai/pinecone-client",
"author": {
"name": "Riley Tomasek",
"email": "hi@rile.yt",
"url": "https://rile.yt"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.dist.json",
"clean": "rm -rf dist node_modules",
"format": "prettier --write src test",
"lint": "eslint src",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn typecheck",
"release": "np",
"test:e2e": "tsx ./test/run-tests.ts",
"typecheck": "tsc"
},
"license": "MIT",
"private": false,
"dependencies": {
"ky": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.8.7",
"eslint": "^8.52.0",
"eslint-config-hckrs": "^0.0.4",
"np": "^8.0.4",
"prettier": "^3.0.3",
"tsx": "^3.14.0",
"type-fest": "^4.5.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"prettier": {
"singleQuote": true
},
"engines": {
"node": ">=18"
}
}