-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "property-randomizer",
"version": "1.0.1",
"description": "A Figma plugin to randomize one or more properties of your selected elements",
"main": "dist/code.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Aaron M. Wright",
"license": "ISC",
"dependencies": {
"javascript-natural-sort": "^0.7.1",
"lodash": "^4.18.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@figma/plugin-typings": "^1.130.0",
"@types/javascript-natural-sort": "^0.7.0",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-plugin": "^5.6.7",
"prettier": "^3.7.2",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.6.2",
"typescript": "^6.0.3",
"webpack": "^5.108.4",
"webpack-cli": "^6.0.1"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}