-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "@carrismetropolitana/eslint",
"version": "1.0.0",
"author": "João de Vasconcelos",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/carrismetropolitana/eslint#readme",
"bugs": {
"url": "https://github.com/carrismetropolitana/eslint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carrismetropolitana/eslint.git"
},
"keywords": [
"public transit",
"eslint",
"lint"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist/"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "tsc && node dist/index.js",
"watch": "tsc -w"
},
"dependencies": {
"@eslint/compat": "1.2.5",
"@eslint/js": "9.19.0",
"@humanwhocodes/momoa": "3.3.6",
"@next/eslint-plugin-next": "15.1.6",
"@stylistic/eslint-plugin": "3.0.0",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/node": "22.12.0",
"eslint": "9.19.0",
"eslint-plugin-jsonc": "2.19.1",
"eslint-plugin-perfectionist": "4.7.0",
"globals": "15.14.0",
"postcss": "8.5.1",
"stylelint": "16.14.1",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard": "37.0.0",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
}
}