generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 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
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
{
"name": "@sapphire/eslint-plugin-result",
"version": "2.0.4",
"description": "A TypeScript ESLint plugin for @sapphire/result",
"author": "@sapphire",
"license": "MIT",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"exports": {
"import": {
"default": "./dist/esm/index.mjs"
},
"require": {
"default": "./dist/cjs/index.cjs"
}
},
"sideEffects": false,
"homepage": "https://github.com/sapphiredev/utilities/tree/main/packages/eslint-plugin-result",
"scripts": {
"test": "vitest run",
"lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
"build": "tsup",
"prepack": "yarn build",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/utilities.git",
"directory": "packages/eslint-plugin-result"
},
"files": [
"dist/"
],
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"@sapphire/eslint-plugin-result",
"sapphire",
"ts",
"typescript",
"eslint",
"eslintPlugin",
"result"
],
"bugs": {
"url": "https://github.com/sapphiredev/utilities/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"@typescript-eslint/typescript-estree": "^7.18.0",
"@vitest/coverage-v8": "^3.2.3",
"tsup": "^8.5.0",
"typedoc-json-parser": "^10.2.0",
"vitest": "^3.2.3"
},
"dependencies": {
"@sapphire/result": "workspace:^",
"@typescript-eslint/utils": "^7.18.0",
"tsutils": "^3.21.0",
"typescript": "~5.4.5"
}
}