-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
56 lines (56 loc) · 2.21 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
{
"name": "@pinecone-database/pinecone",
"version": "4.0.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pinecone-io/pinecone-ts-client"
},
"contributors": [
"Jen Hamon (https://github.com/jhamon)",
"Roie Schwaber-Cohen (https://github.com/rschwabco)",
"Austin DeNoble (https://github.com/austin-denoble)",
"Audrey Lorberfeld (https://github.com/aulorbe)"
],
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf dist/ && tsc",
"version": "jq --null-input --arg version $npm_package_version '{\"name\": \"@pinecone-database/pinecone\", \"version\": $version}' > src/version.json",
"docs:build": "typedoc --plugin ./assets/docs-theme.mjs",
"generate:openapi": "./codegen/build-oas.sh 2024-07 && npm run build && npm run format",
"format": "prettier --write .",
"lint": "eslint src/ --ext .ts",
"repl": "npm run build && node utils/replInit.ts",
"test:integration:node": "TEST_ENV=node jest src/integration/ -c jest.config.integration-node.js --runInBand --bail",
"test:integration-local:node": "TEST_ENV=node node src/integration/integrationRunner.js",
"test:integration:edge": "TEST_ENV=edge jest src/integration/ -c jest.config.integration-edge.js --runInBand --bail",
"test:integration-local:edge": "TEST_ENV=edge node src/integration/integrationRunner.js",
"test:integration:cleanup": "npm run build && node utils/cleanupResources.ts",
"test:external-app-local": "chmod +x src/external-app/local-external-app.sh && src/external-app/local-external-app.sh",
"test:unit": "jest src/"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@edge-runtime/jest-environment": "^2.3.3",
"@edge-runtime/types": "^2.2.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.19.61",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"dotenv": "^16.0.3",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"jest-progress-bar-reporter": "^1.0.25",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
},
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}