-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
{
"name": "@beekeeperstudio/plugin",
"version": "1.7.1-beta.2",
"description": "A simple TypeScript wrapper to send messages from your Beekeeper Studio plugin to the main app.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/internal": {
"types": "./dist/internal.d.ts",
"import": "./dist/internal.js"
},
"./dist/eventForwarder": {
"types": "./dist/eventForwarder.d.ts",
"import": "./dist/eventForwarder.js"
}
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.js.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn run build",
"clean": "rm -rf dist"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/beekeeper-studio/plugin.git"
},
"keywords": [
"beekeeper-studio",
"plugin",
"typescript",
"database"
],
"license": "MIT",
"private": false,
"author": {
"name": "Beekeeper Studio Team",
"email": "support@beekeeperstudio.io",
"url": "https://beekeeperstudio.io"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}