-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "resolve-tspaths",
"version": "0.8.23",
"description": "Transform path mappings in your compiled Typescript code",
"author": "Ben Yap <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/benyap/resolve-tspaths#readme",
"bugs": "https://github.com/benyap/resolve-tspaths/issues",
"repository": {
"type": "git",
"url": "https://github.com/benyap/resolve-tspaths.git"
},
"packageManager": "[email protected]",
"keywords": [
"typescript",
"tsc",
"path",
"alias",
"mapping",
"compiler"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"bin": {
"resolve-tspaths": "dist/main.js"
},
"scripts": {
"prepare": "husky",
"clean": "rimraf dist coverage",
"prebuild": "pnpm clean",
"build": "tsc -p tsconfig.build.json && pnpm dev -p tsconfig.build.json",
"format": "prettier --write './src/**/*.ts'",
"dev": "ts-node -r tsconfig-paths/register src/main.ts",
"start": "node --trace-uncaught dist/main.js",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"release": "pnpm test && pnpm release-it"
},
"peerDependencies": {
"typescript": ">=3.0.3"
},
"dependencies": {
"ansi-colors": "4.1.3",
"commander": "12.1.0",
"fast-glob": "3.3.2"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@release-it/bumper": "6.0.1",
"@release-it/conventional-changelog": "9.0.3",
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.6",
"husky": "9.1.7",
"prettier": "3.4.1",
"release-it": "17.10.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.2",
"vite": "6.0.1",
"vitest": "2.1.6"
}
}