-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "@relevanceai/dataset",
"version": "2.1.0",
"description": "Javascript client for RelevanceAI APIs. Browser, Node.js and typescript support.",
"main": "./dist-cjs/index.js",
"types": "./dist-types/index.d.ts",
"module": "./dist-es/index.js",
"files": [
"dist-*"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.es.json && tsc -p tsconfig.types.json",
"generate": "ts-node ./src/shared/generate.ts",
"test": "jest",
"prepare": "npm run build",
"sample": "ts-node ./test/sample.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RelevanceAI/relevance-js-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RelevanceAI/relevance-js-sdk/issues"
},
"homepage": "https://github.com/RelevanceAI/relevance-js-sdk#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"openapi-typescript": "^4.4.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"cross-fetch": "^3.1.4"
}
}