-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.61 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
{
"private": true,
"name": "figma-video-cover",
"version": "1.0.0",
"description": "Figma Plugin to get the cover of YouTube and Vimeo video urls",
"author": {
"name": "Aarón García Hervás",
"email": "aarongarciahervas@gmail.com",
"url": "https://twitter.com/aarongarciah"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aarongarciah/figma-video-cover"
},
"homepage": "https://github.com/aarongarciah/figma-video-cover#readme",
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider webpack --watch",
"prebuild": "NODE_OPTIONS=--openssl-legacy-provider npm run lint:fix && rimraf dist/*",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack -p",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"test": "test -f dist/ui.html && test -f dist/plugin.js && echo \"Production files built correctly in the /dist folder\" && exit 0 || echo \"Couldn't find the production files under the /dist folder\" exit 1"
},
"keywords": [
"figma",
"plugin",
"figma plugin",
"video cover",
"typescript"
],
"devDependencies": {
"@figma/plugin-typings": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^3.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"url-loader": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}