-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "recombee-js-api-client",
"version": "5.0.0",
"description": "Client-side js library for easy use of the Recombee recommendation API",
"main": "./src/index.js",
"browser": "./src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Recombee/js-api-client.git"
},
"keywords": [
"recombee",
"recommendation engine",
"recommender engine",
"recommender as a service",
"machine learning",
"API",
"SDK"
],
"author": "Ondrej Fiedler <[email protected]> (https://www.recombee.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Recombee/js-api-client/issues"
},
"homepage": "https://github.com/Recombee/js-api-client#readme",
"dependencies": {
"jssha": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"qunit": "^2.22.0",
"typescript-eslint": "^8.16.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-sources": "3.2.3"
},
"scripts": {
"build": "webpack",
"lint": "eslint ."
}
}