-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "google-sheets-sync",
"version": "1.0.0",
"description": "This plugin synchronizes Google Sheets to variables in Figma.",
"main": "code.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production"
},
"homepage": "https://github.com/seogi1004/figma-google-sheets-sync/",
"author": {
"name": "Alvin Hong",
"email": "[email protected]",
"url": "https://alvin.biz/"
},
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.68.0",
"@types/node": "^16.7.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"css-loader": "^6.2.0",
"html-inline-script-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}