-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
83
84
85
86
87
{
"name": "typescript-transform-paths",
"version": "4.0.0-beta.2",
"description": "Transforms module resolution paths using TypeScript path mapping and/or custom paths",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./plugins/nx": "./dist/plugins/nx.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"compile": "tsc",
"build": "yarn clean && yarn compile",
"test": "yarn test/ test",
"release": "changelogen --release --push",
"--------------": "",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"clean": "rm -rf \"**/dist\"",
"clean:all": "yarn clean && rm -rf node_modules \"**/node_modules\" \"**/yarn.lock\" yarn.lock",
"reset": "yarn clean:all && yarn install && yarn build",
"-------------- ": "",
"prepack": "yarn build"
},
"keywords": [
"typescript",
"transform",
"transformer",
"plugin",
"path",
"paths",
"virtual directory",
"import",
"require"
],
"homepage": "https://github.com/LeDDGroup/typescript-transform-paths#readme",
"bugs": {
"url": "https://github.com/LeDDGroup/typescript-transform-paths/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeDDGroup/typescript-transform-paths.git"
},
"license": "MIT",
"contributors": [
"Daniel Perez",
"Ron S. (https://twitter.com/Ron)"
],
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/bases": "^1.0.16",
"@types/eslint": "^9",
"@types/minimatch": "^5.1.2",
"@types/node": "^24.10.4",
"@types/ts-expose-internals": "npm:ts-expose-internals@4.9.5",
"changelogen": "^0.6.2",
"eslint": "9.x",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-jsdoc": "^1.8.0",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"peerDependencies": {
"typescript": ">=5"
},
"dependencies": {
"minimatch": "^10.1.1"
},
"prettier": {
"plugins": [
"prettier-plugin-jsdoc"
]
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}