-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 1.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
{
"name": "variables-converter-figma-plugin",
"version": "1.0.0",
"description": "Figma Plugin that generates CSS Custom Properties, JavaScript variables, Compose variables & SwiftUI variables from your Figma variables",
"main": "dist/plugin/index.js",
"scripts": {
"lint": "prettier . --write && eslint src/**/*.ts --fix",
"build": "shx rm -rf dist && shx mkdir dist && shx cp -R ./src/ui/ ./dist/ && tsc -p tsconfig.json",
"build:watch": "pnpm lint && pnpm build && chokidar \"src\" -c \"pnpm lint && pnpm build\"",
"prepare": "pnpx husky install"
},
"author": "Laurent Thiebault",
"license": "Apache-2.0",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm lint"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@figma/plugin-typings": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chokidar-cli": "^3.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"typescript": "^5.5.4"
}
}