-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
69 lines (69 loc) · 2.08 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
65
66
67
68
69
{
"name": "@builder.io/html-to-figma",
"version": "0.0.5-3",
"description": "Convert HTML to Figma and Figma to code",
"main": "dist/main.js",
"types": "dist/lib/html-to-figma/index.d.ts",
"exports": {
".": "./dist/main.js",
"./main": "./dist/main.js",
"./browser": "./dist/browser.js"
},
"files": [
"dist"
],
"scripts": {
"dev:lib": "tsc -w",
"dev": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --mode=development --watch",
"build": "tsc && NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --mode=production",
"release:patch": "npm version patch && npm run build && npm publish",
"release:dev": "npm version prerelease && npm run build && npm publish --tag dev"
},
"repository": {
"type": "git",
"url": "https://github.com/builderio/html-to-figma"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@builder.io/sdk": "^1.0.40",
"@figma/plugin-typings": "^1.73.0",
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"@types/escape-html": "0.0.20",
"@types/file-type": "^10.9.1",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/spark-md5": "^3.0.1",
"@types/traverse": "^0.6.32",
"@types/uuid": "^8.3.4",
"css-loader": "^3.1.0",
"escape-html": "^1.0.3",
"file-type": "^12.2.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"spark-md5": "^3.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^5.1.6",
"typescript-declaration-webpack-plugin": "^0.1.1",
"url-loader": "^2.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.2.0",
"@emotion/core": "^10.0.28",
"@types/lodash": "^4.14.168",
"@types/pako": "^1.0.1",
"lodash": "^4.17.21",
"pako": "^1.0.11",
"react-intl": "^5.17.2",
"traverse": "^0.6.6",
"uuid": "^8.3.2"
}
}