-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "ts-unalias",
"description": "A TypeScript transformer that rewrites module alias paths in emitted .d.ts files to their relative paths as per tsconfig.json compilerOptions.paths.",
"author": "aurospire",
"version": "1.2.2",
"license": "MIT",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {}
},
"config": {
"watch": "./src;package*.json"
},
"repository": {
"type": "git",
"url": "https://github.com/aurospire/ts-unalias"
},
"scripts": {
"start": "node ./dist/index.js",
"watch": "nodemon -e ts,js,tsx,jsx,json --watch src --watch 'package*.json' --exec 'tsc -p . && node ./dist/index.js || exit 1'",
"build": "tsc -p ."
},
"devDependencies": {
"@types/node": "^20.11.17",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}