generated from antfu/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "eslint-plugin-sentinel",
"version": "0.1.2",
"description": "A collection of ESLint rules specifically targeted for roblox-ts.",
"keywords": ["roblox", "roblox-ts", "eslint-plugin", "rbxts"],
"homepage": "https://github.com/christopher-buss/eslint-plugin-sentinel#readme",
"bugs": "https://github.com/christopher-buss/eslint-plugin-sentinel/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/christopher-buss/eslint-plugin-sentinel.git"
},
"license": "MIT",
"author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": ["dist"],
"scripts": {
"build": "tsdown --clean --dts",
"dev": "tsdown --stub",
"eslint-docs": "eslint-doc-generator",
"lint": "eslint",
"prepare": "simple-git-hooks",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"resolutions": {
"eslint-plugin-sentinel": "workspace:*"
},
"devDependencies": {
"@antfu/ni": "catalog:cli",
"@antfu/utils": "catalog:inlined",
"@isentinel/eslint-config": "catalog:cli",
"@types/node": "catalog:types",
"@typescript-eslint/parser": "catalog:cli",
"@typescript-eslint/rule-tester": "catalog:testing",
"@typescript-eslint/utils": "catalog:cli",
"@vitest/eslint-plugin": "catalog:testing",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"eslint-doc-generator": "catalog:utils",
"eslint-plugin-eslint-plugin": "catalog:testing",
"eslint-plugin-pnpm": "catalog:cli",
"eslint-plugin-sentinel": "workspace:*",
"eslint-vitest-rule-tester": "catalog:testing",
"jiti": "catalog:cli",
"lint-staged": "catalog:cli",
"publint": "catalog:utils",
"simple-git-hooks": "catalog:cli",
"tinyexec": "catalog:utils",
"tsdown": "catalog:cli",
"tsx": "catalog:cli",
"typescript": "catalog:cli",
"unplugin-unused": "catalog:utils",
"vite": "catalog:cli",
"vitest": "catalog:testing",
"yaml": "catalog:testing"
},
"peerDependencies": {
"eslint": "*",
"typescript": ">=4.7.0"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=20.0.0"
}
}