-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ishida-daiki/github-discussions-templete"
},
"homepage": "https://github.com/ishida-daiki/github-discussions-templete/blob/main/README.md",
"author": "ishida-daiki",
"license": "MIT",
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0",
"dotenv": "^16.4.5",
"preact": ">=10"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "1.90.0",
"@types/node": "^22.0.0",
"typescript": ">=4"
},
"figma-plugin": {
"editorType": [
"figma",
"dev",
"figjam"
],
"id": "Discussions Templete",
"name": "Discussions Templete",
"main": "src/main.ts",
"ui": "src/app/App.tsx",
"api": "1.0.0",
"enablePrivatePluginApi": true,
"capabilities": [
"inspect",
"vscode"
],
"enableProposedApi": false,
"documentAccess": "dynamic-page",
"permissions": [
"currentuser"
],
"networkAccess": {
"allowedDomains": [
"https://api.github.com/graphql",
"https://api.github.com"
]
}
}
}