-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "@bzr/bazaar",
"version": "1.5.0",
"description": "The Bazaar SDK. Conveniently use Bazaar with your app in the browser.",
"files": [
"dist"
],
"main": "dist/bazaar.esm.js",
"unpkg": "dist/bazaar.iife.js",
"jsdelivr": "dist/bazaar.iife.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://github.com/bzr-sys/bazaar-js",
"repository": {
"type": "git",
"url": "https://github.com/bzr-sys/bazaar-js.git"
},
"scripts": {
"test": "exit 0",
"build": "npm run clean && rollup -c",
"watch": "npm run clean && rollup -c -w",
"clean": "rm -rf dist",
"tsc": "tsc"
},
"keywords": [
"bazaar"
],
"author": "bazaar",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/runtime": "^7.17.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"eslint": "^8.23.0",
"rollup": "^3.29.4",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.3.1",
"typedoc": "^0.25.13",
"typescript": "^5.2.2"
},
"dependencies": {
"@badgateway/oauth2-client": "^2.2.4",
"jwt-decode": "^4.0.0",
"socket.io-client": "^4.4.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/bazaar.esm.js",
"require": "./dist/bazaar.iife.js"
}
},
"engines": {
"node": ">=18.0.0"
}
}