-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "eslint-plugin-figma",
"version": "0.0.0-semantically-released",
"license": "MIT",
"type": "module",
"description": "ESLint plugin that can parse Figmarine cuttings",
"repository": {
"type": "git",
"url": "https://github.com/Sidnioulz/figmarine",
"directory": "packages/eslint-plugin-figma"
},
"bugs": {
"url": "https://github.com/Sidnioulz/figmarine/issues"
},
"keywords": [
"figma",
"eslint",
"eslint-plugin",
"figmarine"
],
"publishConfig": {
"access": "public"
},
"author": "Steve Dodier-Lazaro",
"homepage": "https://github.com/Sidnioulz/figmarine",
"scripts": {
"build": "tsc && tsup --env.NODE_ENV production",
"dev": "tsc-watch --onSuccess \"tsup --env.NODE_ENV production\"",
"docs:build": "echo 'TODO",
"docs:dev": "echo 'TODO",
"docs:serve": "echo 'TODO",
"lint": "eslint .",
"lint:files": "eslint --",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"test": "vitest run",
"test:changed": "vitest run --changed HEAD~1",
"test:coverage": "vitest --coverage run",
"test:dev": "vitest dev",
"typecheck": "tsc --noEmit"
},
"exports": {
"./*": {
"types": "./dist/*.d.js",
"default": "./dist/*.js"
}
},
"files": [
"dist/**"
],
"devDependencies": {
"@figmarine/config-eslint": "workspace:*",
"@figmarine/config-prettier": "workspace:*",
"@figmarine/config-tsup": "workspace:*",
"@figmarine/config-typescript": "workspace:*",
"@figmarine/config-vitest": "workspace:*",
"@types/node": "^22.8.7",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/coverage-v8": "^2.1.4",
"eslint-plugin-eslint-plugin": "^6.3.1",
"lint-staged": "^15.2.10",
"tsc-watch": "^6.2.0",
"tsup": "^8.3.5",
"typescript": "latest",
"vitest": "^2.1.4"
},
"dependencies": {
"@eslint/core": "^0.8.0",
"@eslint/json": "^0.6.0",
"@figmarine/logger": "workspace:*"
},
"peerDependencies": {
"eslint": ">=9.0.0"
}
}