This repository was archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "@elsewhencode/contabulate-figma-plugin",
"version": "1.0.0",
"keywords": [
"create-figma-plugin",
"figma",
"figma-plugin"
],
"license": "UNLICENSED",
"author": "Jon Rimmer",
"dependencies": {
"@create-figma-plugin/ui": "1.2.2",
"@create-figma-plugin/utilities": "1.2.2",
"faker": "^5.5.3",
"immer": "^8.0.1",
"preact": "^10.5.14",
"zod": "^3.5.1"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.14.6",
"@create-figma-plugin/build": "1.2.2",
"@create-figma-plugin/tsconfig": "1.2.2",
"@figma/plugin-typings": "^1.26.0",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/preact": "^6.3.4",
"@storybook/preset-scss": "^1.0.3",
"@types/faker": "^5.5.7",
"babel-loader": "^8.2.2",
"core-js": "^3.15.2",
"css-loader": "^5.2.6",
"style-loader": "^2.0.0",
"typescript": "^4.3.5"
},
"scripts": {
"build": "build-figma-plugin",
"watch": "build-figma-plugin --watch",
"storybook": "start-storybook -p 4242",
"build-storybook": "build-storybook"
},
"figma-plugin": {
"id": "917774295444379302",
"name": "Contabulate",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"relaunchButtons": {
"edit": {
"name": "Edit Table",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}
}
}