-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.18 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
{
"type": "module",
"name": "@digital-alchemy/eslint",
"description": "Framework-correctness ESLint plugin for Digital-Alchemy TypeScript applications",
"repository": {
"url": "git+https://github.com/Digital-Alchemy-TS/eslint"
},
"version": "26.6.15",
"author": {
"url": "https://github.com/zoe-codez",
"name": "Zoe Codez"
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"homepage": "https://docs.digital-alchemy.app",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist/; tsc -p tsconfig.lib.json",
"lint": "eslint src && echo \"✓ lint passed\"",
"lint:fix": "eslint src --fix && echo \"✓ lint:fix passed\"",
"type-check": "tsc --noEmit -p tsconfig.json && echo \"✓ type-check passed\"",
"test": "vitest run",
"test:watch": "vitest",
"upgrade": "ncu --upgrade --cooldown 48h && truncate -s 0 yarn.lock && yarn install",
"update:docs": "eslint-doc-generator",
"check:docs": "eslint-doc-generator --check"
},
"bugs": {
"email": "bugs@digital-alchemy.app",
"url": "https://github.com/Digital-Alchemy-TS/eslint/issues/new/choose"
},
"keywords": [
"eslint",
"eslint-plugin",
"digital-alchemy",
"typescript",
"linting"
],
"funding": [
{
"url": "https://github.com/sponsors/zoe-codez",
"type": "GitHub"
}
],
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=5.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@typescript-eslint/parser": "^8.61.0",
"@typescript-eslint/rule-tester": "^8.61.0",
"@typescript-eslint/utils": "^8.61.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.5.0",
"eslint-doc-generator": "^3.6.0",
"npm-check-updates": "^22.2.3",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "MIT",
"packageManager": "yarn@4.14.1"
}