forked from preset-io/frontend-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "@preset-sdk/embedded",
"version": "0.1.8",
"description": "Frontend SDK for embedding Preset data analytics into your own application",
"access": "public",
"keywords": [
"preset",
"frontend",
"sdk",
"superset",
"embed",
"embedded",
"iframe",
"dashboard",
"chart",
"analytics"
],
"files": [
"bundle",
"lib",
"dist"
],
"main": "bundle/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc ; babel src --out-dir lib --extensions '.ts,.tsx' ; webpack --mode production",
"ci:release": "node ./release-if-necessary.js",
"test": "jest"
},
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 safari versions",
"last 3 edge versions"
],
"dependencies": {
"@superset-ui/switchboard": "^0.18.26-0"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"axios": "^0.25.0",
"babel-loader": "^8.2.3",
"jest": "^27.5.1",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preset-io/frontend-sdk.git"
},
"homepage": "https://github.com/preset-io/frontend-sdk#readme",
"bugs": {
"url": "https://github.com/preset-io/frontend-sdk/issues"
},
"license": "UNLICENSED",
"author": "Preset"
}