-
Notifications
You must be signed in to change notification settings - Fork 313
/
package.json
27 lines (27 loc) · 936 Bytes
/
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
{
"name": "plugin-samples",
"version": "1.0.0",
"description": "Sample plugins using the [Figma Plugin API][docs].",
"scripts": {
"check": "for i in */tsconfig.json; do echo $i; (cd $(dirname $i) && tsc); done",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/figma/plugin-samples.git"
},
"author": "Figma",
"license": "MIT",
"bugs": {
"url": "https://github.com/figma/plugin-samples/issues"
},
"homepage": "https://github.com/figma/plugin-samples#readme",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "github:figma/eslint-plugin-figma-plugins",
"@figma/plugin-typings": "https://github.com/figma/plugin-typings.git#dynamic-page-plugin-types",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}