-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "icon2code",
"version": "2.0.0",
"description": "A simple plugin for generating JSON data from icon set in Figma",
"main": "src/code.ts",
"author": "Radosław Kozieł (@panr)",
"license": "MIT",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"test": "jest",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots",
"test:all": "npm run test && npm run test:visual"
},
"devDependencies": {
"@figma/plugin-typings": "^1.119.0",
"@playwright/test": "^1.57.0",
"@types/clipboard": "^2.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/tinycolor2": "^1.4.6",
"clipboard": "^2.0.11",
"css-loader": "^7.1.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.4",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"style-loader": "^4.0.0",
"tinycolor2": "^1.6.0",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}