-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.13 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
{
"name": "cosmiconfig-typescript-loader",
"version": "6.0.0",
"description": "TypeScript loader for cosmiconfig",
"author": "Alex Miller <codex.nz@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Codex-/cosmiconfig-typescript-loader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/cosmiconfig-typescript-loader.git"
},
"bugs": {
"url": "https://github.com/Codex-/cosmiconfig-typescript-loader/issues"
},
"files": [
"dist/**/*"
],
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
}
},
"scripts": {
"build": "pnpm build:types && pnpm build:sources",
"build:sources": "node ./scripts/esbuild.config.mjs",
"build:types": "tsc -p tsconfig.build.json",
"check:types": "tsc -p tsconfig.json",
"format": "pnpm format:check --write",
"format:check": "prettier --check \"{**/*,*}.{js,cjs,mjs,ts}\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"release": "release-it",
"test": "jest",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=v18"
},
"peerDependencies": {
"@types/node": "*",
"cosmiconfig": ">=9",
"typescript": ">=5"
},
"dependencies": {
"jiti": "^2.3.3"
},
"devDependencies": {
"@swc/core": "^1.7.42",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"auto-changelog": "^2.5.0",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"keywords": [
"cosmiconfig",
"typescript"
]
}