-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 894 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 894 Bytes
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
{
"name": "figma-comlink",
"version": "0.0.2",
"description": "Comlink endpoints for communicating between Figma plugin threads",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"figma",
"comlink",
"endpoint"
],
"license": "MIT",
"private": false,
"author": "Martynas Kadiša <8273932+martynaskadisa@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/martynaskadisa/figma-comlink.git"
},
"bugs": {
"url": "https://github.com/martynaskadisa/figma-comlink/issues"
},
"sideEffects": false,
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@figma/plugin-typings": "^1.42.1",
"comlink": "^4.3.1",
"tsup": "^5.11.13",
"typescript": "^4.5.5"
},
"peerDependencies": {
"comlink": "^4.3.1"
}
}