-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
35
36
37
38
39
{
"name": "figma-export-values",
"type": "module",
"version": "0.2.0",
"packageManager": "[email protected]",
"description": "Figma plugin that exports variables and styles from a document.",
"author": "Vladislav Deryabkin",
"license": "MIT",
"repository": "github:evermake/figma-export-values",
"keywords": ["figma", "figma-plugin"],
"exports": {
"types": "./dist/types.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build:plugin": "tsx ./scripts/build-plugin.ts",
"build:package": "tsx ./scripts/build-package.ts",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp package.json",
"deps": "taze -wI"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@figma/plugin-typings": "^1.100.2",
"@types/node": "^22.7.0",
"bumpp": "^9.5.2",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-plugin-format": "^0.1.2",
"rimraf": "^6.0.1",
"taze": "^0.16.9",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}