-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "contrast-figma-plugin",
"version": "1.0.0",
"scripts": {
"build:google": "PLUGIN_ID=815459412677630743 npm run build",
"start:google": "PLUGIN_ID=815459412677630743 npm run start",
"build": "build-figma-plugin --typecheck --minify",
"start": "build-figma-plugin --typecheck --watch"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.6.1",
"@create-figma-plugin/tsconfig": "^2.6.1",
"@figma/plugin-typings": "^1.80.0",
"postcss": "^8.4.13",
"postcss-nested": "^5.0.6",
"typescript": "^4"
},
"dependencies": {
"@create-figma-plugin/ui": "^2.1.1",
"@create-figma-plugin/utilities": "^2.1.1",
"classnames": "^2.2.6",
"preact": "^10"
},
"figma-plugin": {
"id": "911262488575486588",
"name": "Contrast",
"networkAccess": {
"allowedDomains": [
"none"
]
},
"menu": [
{
"name": "Generate contrast report",
"main": "./commands/generate-report",
"ui": "./commands/generate-report/ui.tsx"
}
]
}
}