-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
41
42
43
{
"name": "green-tokens-figma-plugin",
"version": "1.0.0",
"description": "Green Tokens Plugin",
"main": "src/code.js",
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"author": {
"name": "Green Design System",
"email": "greendesignsystem@seb.se"
},
"license": "MIT",
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "^1.91.0",
"typescript": ">=5.4.5"
},
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0",
"@types/chroma-js": "^2.4.4",
"chroma-js": "^2.4.2",
"preact": "^10.20.2"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1290624141153825642",
"name": "Green Design System",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"networkAccess": {
"allowedDomains": [
"https://seb.io",
"https://api.seb.io"
]
}
}
}