-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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
{
"name": "@takken/envoke",
"version": "0.1.5",
"description": "Convenience package for running scripts in TypeScript projects with support for tsconfig paths.",
"type": "module",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build",
"test": "echo \"No tests yet\""
},
"keywords": [
"typescript",
"runner",
"tsconfig",
"paths",
"monorepo",
"tsx",
"path-mapping",
"alias"
],
"author": {
"name": "Webber Takken",
"url": "https://takken.io",
"email": "webber@takken.io"
},
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"tsx": "^4.20.6"
},
"devDependencies": {
"@types/node": "^24.5.2",
"typescript": "^5.9.2"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/webbertakken/envoke.git"
},
"bugs": {
"url": "https://github.com/webbertakken/envoke/issues"
},
"homepage": "https://github.com/webbertakken/envoke#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"packageManager": "pnpm@10.12.4+sha1.88a0ccfe72d6345dede50dc9d6158400be2420eb"
}