-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@relationalai/rai-sdk-javascript",
"description": "RelationalAI SDK for JavaScript",
"version": "0.7.9-alpha",
"author": {
"name": "RelationalAI",
"url": "https://relational.ai"
},
"homepage": "https://github.com/RelationalAI/rai-sdk-javascript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RelationalAI/rai-sdk-javascript.git"
},
"license": "Apache-2.0",
"keywords": [
"api",
"rel",
"relationalai",
"sdk"
],
"browserslist": [
"> 2%"
],
"type": "module",
"exports": {
".": {
"require": "./dist/node/rai-sdk-javascript.cjs",
"import": "./dist/node/rai-sdk-javascript.module.js"
},
"./node": {
"require": "./dist/node/rai-sdk-javascript.cjs",
"import": "./dist/node/rai-sdk-javascript.module.js"
},
"./web": {
"require": "./dist/web/rai-sdk-javascript.cjs",
"import": "./dist/web/rai-sdk-javascript.module.js"
}
},
"types": "./dist/typings/index.node.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/typings/index.node.d.ts"
],
"node": [
"./dist/typings/index.node.d.ts"
],
"web": [
"./dist/typings/index.web.d.ts"
]
}
},
"main": "./dist/node/rai-sdk-javascript.cjs",
"browser": "./dist/web/rai-sdk-javascript.cjs",
"module": "./dist/node/rai-sdk-javascript.module.js",
"files": [
"*"
],
"scripts": {
"prepack": "$npm_execpath run build",
"build": "rm -rf ./dist && webpack build",
"proto-gen": "npx protoc --ts_out src/proto/generated/ --proto_path src/proto src/proto/*.proto",
"dev": "rm -rf ./dist && webpack watch",
"format": "prettier --write ./src --loglevel warn",
"tscheck": "tsc --noEmit --pretty true",
"lint": "eslint --cache . --ext js --ext ts --ext tsx",
"fix": "eslint --cache --fix . --ext js --ext ts --ext tsx",
"test": "jest --verbose --runInBand",
"test:debug": "npx --node-arg=--inspect jest --runInBand --testTimeout=60000 --verbose --watch",
"test:bundle": "node ./dist-test/esm-test.mjs && node ./dist-test/cjs-test.cjs",
"example": "node --es-module-specifier-resolution=node --loader ts-node/esm"
},
"devDependencies": {
"@jest/reporters": "29.3.1",
"@protobuf-ts/plugin": "2.7.0",
"@types/ini": "^4.1.1",
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"commander": "8.3.0",
"eslint": "7.28.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-license-header": "0.4.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unicorn": "27.0.0",
"jest": "29.3.1",
"jwt-decode": "3.1.2",
"lodash": "4.17.21",
"nock": "^13.5.6",
"prettier": "2.2.1",
"prettier-plugin-jsdoc": "0.3.8",
"ts-jest": "29.0.3",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "4.4.4",
"webpack": "^5.96.1",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@protobuf-ts/runtime": "2.9.4",
"apache-arrow": "8.0.0",
"console-table-printer": "2.11.0",
"decimal.js": "10.3.1",
"ini": "5.0.0",
"node-fetch-commonjs": "3.2.4",
"query-string": "7.1.0"
}
}