-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"dependencies": {
"@create-figma-plugin/ui": "^3.2.1",
"@create-figma-plugin/utilities": "^3.2.1",
"preact": ">=10",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.1",
"@create-figma-plugin/tsconfig": "^3.2.1",
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "1.100.2",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"prettier": "3.4.2",
"typescript": ">=4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier . --write"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1464569592381434907",
"name": "Our World in Data",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"https://ourworldindata.org",
"https://admin.owid.io"
]
},
"permissions": [
"currentuser"
]
}
}