-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.77 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
{
"name": "Tablo - Smart Tables for Real Data",
"version": "1.1.0",
"description": "Tablo turns any raw data into a styled, production-ready table in Figma - in one paste. No column setup. No manual styling. No Lorem Ipsum.",
"license": "MIT",
"author": "Monfort N. Brian <monfortbrian@outlook.com> (https://github.com/monfortbrian)",
"repository": {
"type": "git",
"url": "https://github.com/monfortbrian/tablo"
},
"bugs": "https://github.com/monfortbrian/tablo/issues",
"homepage": "https://github.com/monfortbrian/tablo#readme",
"keywords": [
"figma",
"plugin",
"table",
"csv",
"spreadsheet",
"design",
"figma-plugin"
],
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0",
"preact": "^10.24.3"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "^1.100.0",
"typescript": "^5.6.0"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1619858212930918392",
"name": "Tablo - Smart Tables for Real Data",
"main": "src/plugin/main.ts",
"ui": "src/ui/index.tsx",
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"https://docs.google.com",
"https://onedrive.live.com",
"https://1drv.ms",
"https://*.sharepoint.com"
],
"reasoning": "Fetches public spreadsheets as CSV from Google Sheets and Excel Online. No user data is sent. Read-only access to files the user explicitly provides a URL for."
}
}
}