-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.34 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
95
96
97
98
99
100
101
{
"name": "@hyperse/ts-node-paths",
"version": "1.0.11",
"description": "Executes a command using `file ...arguments`, supports `.ts` file for esm type module.",
"keywords": [
"hyperse",
"ts",
"typescript",
"tsconfig",
"ts-config",
"ts-node",
"ts paths",
"ts node esm",
"ts node paths",
"tsconfig.json",
"path",
"alias",
"mapping"
],
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/ts-node-paths.git"
},
"type": "module",
"exports": {
"./esm": {
"import": "./dist/loader/esm.js"
},
"./register": {
"import": "./dist/loader/register.js"
},
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "tsx ./scripts/build.ts",
"next": "next build",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"test": "run-s test-unit",
"test-unit": "vitest run",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty",
"changeset": "changeset",
"release": "yarn build && changeset publish",
"cz": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"colorette": "^2.0.20",
"get-tsconfig": "^4.8.1",
"package-up": "^5.0.0",
"ts-node": "11.0.0-beta.1",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@hyperse/eslint-config-hyperse": "^1.2.1",
"@types/node": "^22.7.8",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.13.0",
"execa": "^9.4.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all": "^4.1.5",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}