-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "tsconfig-replace-paths",
"version": "0.0.14",
"description": "Replace absolute paths to relative paths for package compilation",
"author": "Jon Wheeler <[email protected]>",
"license": "MIT",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"bin": {
"tsconfig-replace-paths": "dist/commonjs/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jonkwheeler/tsconfig-replace-paths.git"
},
"config": {
"dirBuild": "./dist",
"dirCommonjs": "./dist/commonjs",
"dirEsm": "./dist/esm",
"dirSrc": "./src"
},
"publishConfig": {
"scope": "jonkwheeler",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "yarn build:esm && yarn build:cjs",
"nuke:all": "yarn nuke:node-nodules && yarn nuke:build",
"nuke:build:rebuild": "yarn nuke:build && yarn build",
"nuke:build": "rm -rf $npm_package_config_dirBuild",
"nuke:node-nodules": "rm -rf node_modules",
"release": "yarn release-it"
},
"bugs": {
"url": "https://github.com/jonkwheeler/tsconfig-replace-paths/issues"
},
"homepage": "https://github.com/jonkwheeler/tsconfig-replace-paths#readme",
"keywords": [
"typescript",
"tsc",
"tsconfig",
"paths",
"path",
"alias",
"aliases",
"compilation",
"compiler",
"resolver",
"resolve",
"absolute",
"relative",
"replace",
"transform"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"typescript": "^4.4.4"
},
"dependencies": {
"commander": "^3.0.2",
"globby": "^10.0.1",
"json5": "^2.2.0"
}
}