-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.85 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
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
{
"name": "@haltcase/run",
"version": "5.0.0",
"description": "Flexible, function-based task runner where command line options are props",
"keywords": [
"arktype",
"command",
"execa",
"function",
"runner",
"task",
"typescript"
],
"homepage": "https://github.com/haltcase/run#readme",
"bugs": "https://github.com/haltcase/run/issues",
"license": "MIT",
"author": "Bo Lingen <bo@haltcase.dev> (https://haltcase.dev)",
"repository": {
"type": "git",
"url": "https://github.com/haltcase/run.git"
},
"bin": {
"hr": "./dist/cli/bin.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"build:watch": "vp pack --watch",
"check": "pnpm eslint:check && vp check --no-lint",
"eslint:check": "eslint src",
"format": "eslint --fix src && vp check --fix --no-lint",
"hr": "tsx ./src/cli/bin.ts",
"prepack": "pnpm run build",
"prepare": "vp config",
"test": "vp test watch",
"test:run": "vp test",
"types": "vp check --no-fmt --no-lint"
},
"dependencies": {
"arktype": "^2.2.0",
"c12": "^4.0.0-beta.5",
"cliui": "^9.0.1",
"execa": "^9.6.1"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.3",
"@haltcase/style": "^7.3.1",
"@types/node": "^24.13.1",
"@typescript/native-preview": "7.0.0-dev.20260608.1",
"eslint": "^9.39.4",
"jiti": "^2.7.0",
"oxlint-tsgolint": "^0.23.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"optionalDependencies": {
"jiti": "^2.7.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.5.2",
"haltcase.run": {
"taskDirectory": "./scripts",
"quiet": false
}
}