generated from 2BAD/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.58 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@2bad/axiom",
"version": "1.0.0-beta.9",
"description": "",
"keywords": [
"eslint",
"linter",
"typescript"
],
"homepage": "https://github.com/2BAD/axiom#readme",
"bugs": {
"url": "https://github.com/2BAD/axiom/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2BAD/axiom.git"
},
"license": "MIT",
"author": "2BAD (https://github.com/2BAD)",
"contributors": [
{
"name": "Jason Hyde",
"email": "[email protected]",
"url": "https://github.com/mrhyde"
}
],
"type": "module",
"exports": {
".": "./build/index.js",
"./plugins": "./build/plugins/index.js"
},
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "run-p build:*",
"postbuild": "run-s fix:alias fix:ext",
"build:swc": "swc ./source -d ./build --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"check": "run-p check:*",
"check:eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"check:biome": "biome check ./source",
"fix": "run-s fix:code fix:format",
"fix:alias": "tsc-alias -p tsconfig.build.json",
"fix:code": "run-s 'check:eslint -- --fix'",
"fix:ext": "tsfix",
"fix:format": "biome format --write ./source",
"prepublishOnly": "run-s build",
"preversion": "run-s check test build",
"test": "vitest run",
"test:integration": "vitest run integration --coverage",
"test:unit": "vitest run unit --coverage"
},
"dependencies": {
"@eslint/compat": "1.2.1",
"@eslint/js": "9.13.0",
"@stylistic/eslint-plugin": "2.9.0",
"@types/eslint__js": "8.42.3",
"@vitest/eslint-plugin": "1.1.7",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import-x": "4.3.1",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-promise": "7.1.0",
"neostandard": "0.11.6",
"typescript-eslint": "8.11.0"
},
"devDependencies": {
"@2bad/tsconfig": "3.0.1",
"@2bad/tsfix": "0.1.0",
"@biomejs/biome": "1.9.4",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.39",
"@types/node": "22.7.8",
"@vitest/coverage-v8": "2.1.3",
"npm-run-all2": "7.0.0",
"rimraf": "6.0.1",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.3"
},
"peerDependencies": {
"eslint": ">= 9",
"typescript": ">= 5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"volta": {
"node": "22.10.0",
"npm": "10.9.0"
}
}