-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "@figma/eslint-plugin-figma-plugins",
"version": "0.15.0",
"description": "typescript-eslint rules for Figma plugin development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json && npm run update:eslint-docs",
"watch": "tsc -p tsconfig.build.json -w",
"clean": "rm -rf dist",
"test": "jest test/",
"test-workaround": "jest --detect-open-handles test/",
"lint": "eslint .",
"lint:docs": "npm run update:eslint-docs -- --check",
"typecheck": "tsc --noEmit",
"update:eslint-docs": "eslint-doc-generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/figma/eslint-plugin-figma-plugins.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/figma/eslint-plugin-figma-plugins/issues"
},
"homepage": "https://github.com/figma/eslint-plugin-figma-plugins#readme",
"files": [
"dist/",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@typescript-eslint/typescript-estree": "^6.13.2",
"@typescript-eslint/utils": "^6.12.0",
"typescript": "^5.3.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@typescript-eslint/rule-tester": "^6.13.2",
"eslint": "^8.54.0",
"eslint-doc-generator": "^1.6.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2"
}
}