-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"ci:install": "pnpm install --frozen-lockfile",
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"test": "npm run test:fake",
"test:vitest": "npm run test:unit",
"test:fake": "echo 'no tests yet'",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "vitest"
},
"dependencies": {
"@create-figma-plugin/utilities": "2.6.1",
"figx": "0.1.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "1.1.0",
"@create-figma-plugin/build": "3.0.2",
"@create-figma-plugin/tsconfig": "3.0.2",
"@create-figma-plugin/ui": "3.0.2",
"@figma/eslint-plugin-figma-plugins": "^0.14.0",
"@figma/plugin-typings": "*",
"eslint": "^8.55.0",
"preact": "10.18.1",
"simple-git-hooks": "^2.9.0",
"typescript": "5.2.2",
"vitest": "1.0.4"
},
"figma-plugin": {
"documentAccess": "dynamic-page",
"editorType": [
"figma"
],
"id": "1348339696557868933",
"name": "Select and Inspect",
"ui": "src/ui.tsx",
"main": "src/main.ts",
"networkAccess": {
"allowedDomains": [
"none"
]
}
},
"simple-git-hooks": {
"pre-commit": "pnpm typecheck && pnpm lint:fix"
}
}