generated from 2BAD/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.54 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
98
{
"name": "@2bad/tsfix",
"version": "0.1.0",
"description": "",
"keywords": [
"typescript",
"imports",
"fix"
],
"homepage": "https://github.com/2BAD/tsfix#readme",
"bugs": {
"url": "https://github.com/2BAD/tsfix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/2BAD/tsfix.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",
"typings": "./build/index.d.ts",
"bin": {
"tsfix": "./bin/cli.mjs"
},
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "run-p build:*",
"build:swc": "swc ./source -d ./build --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"postbuild": "run-s fix:alias fix:ext",
"check": "run-p check:*",
"check:code": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
"check:format": "prettier --check 'source/**/*.ts'",
"fix": "run-s fix:code fix:format",
"fix:alias": "tsc-alias -p tsconfig.build.json",
"fix:code": "run-s 'check:code -- --fix'",
"fix:ext": "exit 0",
"fix:format": "prettier --write 'source/**/*.ts'",
"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"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"dependencies": {
"debug": "4.3.7",
"fast-glob": "3.3.2",
"meow": "13.2.0",
"pathe": "1.1.2",
"typescript": "5.6.3"
},
"devDependencies": {
"@2bad/tsconfig": "3.0.1",
"@swc/cli": "0.5.0",
"@swc/core": "1.9.2",
"@types/debug": "4.1.12",
"@types/node": "20.17.6",
"@vitest/coverage-v8": "2.1.4",
"eslint-config-love": "46.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vitest": "0.5.4",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tsc-alias": "1.8.10",
"type-fest": "4.26.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
}
}