-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "@shiftcode/eslint-plugin-rules",
"version": "6.0.0",
"description": "eslint-rules for shiftcode-specific eslint rules",
"repository": "https://github.com/shiftcode/sc-commons-public",
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"format": "prettier --write .",
"lint": "eslint --fix --cache .",
"lint:ci": "eslint .",
"prepublish": "node ../publish-helper/dist/prepare-dist.js",
"test": "vitest --cache --run",
"test:ci": "vitest --no-cache --run && tsc -p ./tsconfig.spec.json",
"test:watch": "vitest --cache"
},
"dependencies": {
"@typescript-eslint/utils": "^8.46.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.46.0",
"@typescript-eslint/rule-tester": "^8.46.0"
},
"peerDependencies": {
"eslint": "^9.37.0"
},
"engines": {
"node": ">=24.10.2"
},
"publishConfig": {
"directory": "dist"
}
}