-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
94 lines (94 loc) · 2.63 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
{
"name": "typescript-transform-paths",
"version": "3.5.2",
"description": "Transforms module resolution paths using TypeScript path mapping and/or custom paths",
"type": "commonjs",
"main": "./dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./register": "./dist/register-entry.js",
"./nx-transformer": "./dist/plugins/nx-transformer-plugin.js"
},
"files": [
"dist",
"types",
"README.md",
"CHANGELOG.md",
"register.js",
"nx-transformer.js"
],
"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.9.1",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint": "^9",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.5.2",
"@types/ts-expose-internals": "npm:ts-expose-internals@4.9.5",
"@types/ts-node": "npm:ts-node@^10.9.2",
"@types/typescript-3": "npm:typescript@3.x",
"@types/typescript-4.7": "npm:typescript@4.7.x",
"changelogen": "^0.5.5",
"eslint": "9.x",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"typescript": ">=3.6.5"
},
"dependencies": {
"minimatch": "^9.0.5"
},
"prettier": {
"plugins": [
"prettier-plugin-jsdoc"
]
},
"packageManager": "yarn@4.4.0+sha512.91d93b445d9284e7ed52931369bc89a663414e5582d00eea45c67ddc459a2582919eece27c412d6ffd1bd0793ff35399381cb229326b961798ce4f4cc60ddfdb"
}