-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "html-to-figma-converter",
"version": "1.0.0",
"description": "Convert HTML JSON to Figma layouts",
"main": "code.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "node test-automation.js",
"test:sample": "cat test-sample.json | pbcopy && echo '✅ Sample JSON copied to clipboard! Now paste it into the Figma plugin.'"
},
"keywords": [
"figma",
"plugin",
"html",
"converter"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^1.0.0",
"@figma/plugin-typings": "^1.109.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^9.39.2",
"raw-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"typescript-eslint": "^8.54.0",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"puppeteer": "^24.36.1"
}
}