-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "figma-viewer-chrome-plugin",
"description": "A Chrome plugin that allows Figma viewers to use like an editor.",
"keywords": [
"figma",
"design",
"figma viewer",
"figma plugin",
"developer",
"handoff",
"specs"
],
"bugs": {
"url": "https://github.com/leadream/figma-viewer-chrome-plugin/issues"
},
"homepage": "https://github.com/leadream/figma-viewer-chrome-plugin#readme",
"author": "leadream",
"repository": "https://github.com/leadream/figma-viewer-chrome-plugin.git",
"version": "0.1.0",
"license": "AGPL-3.0",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"framer-motion": "^6.2.8",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@figma/plugin-typings": "^1.37.0",
"@types/chrome": "^0.0.177",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^10.0.0",
"ts-loader": "^9.2.5",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}