-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "covr",
"version": "1.0.0",
"description": "This figma plugin connects your spotify account with figma to use cover images as fills.",
"main": "code.js",
"scripts": {
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"build": "SERVER_URL=https://covr.ph1p.dev NODE_ENV=production webpack --mode=production && rm ./covr/ui.js*",
"dev": "DEBUG=* webpack --watch",
"version": "conventional-changelog -p karma -i CHANGELOG.md -s -r 0 && git add ."
},
"author": "Philip Stapelfeldt <me@ph1p.dev>",
"repository": {
"type": "git",
"url": "https://github.com/ph1p/covr.git"
},
"prettier": {
"singleQuote": true
},
"license": "MIT",
"dependencies": {
"@popperjs/core": "^2.11.8",
"axios": "^1.6.7",
"buffer": "^6.0.3",
"mobx": "^6.12.0",
"mobx-react": "^9.1.0",
"mobx-sync": "^3.0.0",
"preact": "^10.19.6",
"react-content-loader": "^6.2.1",
"react-popper": "^2.3.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.22.2",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@figma/plugin-typings": "^1.88.0",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"create-file-webpack": "^1.0.2",
"css-loader": "^6.10.0",
"esbuild-loader": "^4.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"figmaPlugin": {
"name": "covr",
"id": "961383676925301983",
"api": "1.0.0",
"main": "code.js",
"ui": "ui.html",
"editorType": [
"figma",
"figjam"
],
"enableProposedApi": false,
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"https://covr.ph1p.dev",
"https://api.spotify.com",
"https://*.scdn.co",
"https://*.spotifycdn.com",
"https://rsms.me"
],
"reasoning": "Connect to Spotify & Load Fonts",
"devAllowedDomains": []
}
}
}