-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.41 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
83
84
85
86
87
88
89
90
{
"name": "figma2html",
"version": "1.1.0",
"private": true,
"description": "Export Figma frames as images with text elements rendered as HTML",
"homepage": "https://www.github.com/the-dataface/figma2html",
"repository": {
"type": "git",
"url": "https://www.github.com/the-dataface/figma2html.git"
},
"bugs": {
"email": "sam@thedataface.com",
"url": "https://www.github.com/the-dataface/figma2html/issues/new/choose"
},
"license": "MIT",
"keywords": [
"ai2html",
"figma",
"figma2html",
"figma html"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c && rm ./build/bundle.js",
"ci:version": "changeset version",
"ci:publish": "changeset publish && git push --follow-tags"
},
"author": {
"name": "Sam Vickars",
"email": "sam.vickars@gmail.com",
"url": "https://www.samvickars.com"
},
"contributors": [
{
"name": "Sawyer Click",
"email": "sawyerclick@gmail.com",
"url": "https://www.sawyer.codes"
},
{
"name": "Michael Hester"
}
],
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@figma/plugin-typings": "^1.77.0",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-dsv": "^3.0.1",
"@rollup/plugin-html": "^1.0.1",
"@rollup/plugin-image": "3.0.1",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "10.0.1",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.13",
"caniuse-lite": "1.0.30001441",
"cssnano": "^5.1.14",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"htmlparser2": "^9.0.0",
"lefthook": "^1.2.7",
"postcss": "^8.4.20",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"rollup": "3.8.1",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-svg": "2.0.0",
"sirv-cli": "2.0.2",
"slugify": "^1.6.5",
"svelte": "3.55.0",
"svelte-feather-icons": "^4.0.0",
"svelte-preprocess": "5.0.0",
"tailwindcss": "^3.2.4",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"dependencies": {
"js-convert-case": "^4.2.0",
"jszip": "3.10.1"
}
}