-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.43 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
{
"name": "@schummar/runp",
"version": "0.0.0-develop",
"description": "Neat parallel task execution",
"keywords": [
"parallel",
"task",
"job",
"command",
"execution",
"run",
"typescript",
"nodejs"
],
"license": "MIT",
"repository": "schummar/runp",
"author": {
"name": "Marco Schumacher",
"email": "[email protected]"
},
"main": "dist/index.js",
"bin": {
"runp": "dist/cli.js"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint --cache --cache-location=node_modules/.cache/eslint/.eslintcache --cache-strategy=content --max-warnings=0 src",
"build": "tsx src/cli.ts build:clean :p build:compile:*",
"build:clean": "rimraf \"dist/**/*\"",
"build:compile:types": "tsc",
"build:compile:index": "NODE_ENV=production esbuild --bundle --platform=node src/index.ts --outfile=dist/index.js --sourcemap --minify",
"build:compile:cli": "esbuild --bundle --platform=node src/cli.ts --outfile=dist/cli.js --sourcemap --minify --external:.",
"prepublishOnly": "tsx src/cli.ts test lint build :s publint"
},
"devDependencies": {
"@schummar/react-terminal": "1.4.8",
"@types/node": "22.7.9",
"@types/react": "18.3.12",
"@types/react-reconciler": "0.28.8",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitejs/plugin-react": "4.3.3",
"chalk": "^5.3.0",
"cleye": "1.3.2",
"cross-state": "0.41.3",
"esbuild": "0.24.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"fast-equals": "5.0.1",
"node-pty": "1.0.0",
"prettier": "3.3.3",
"publint": "0.2.12",
"quoted-string-space-split": "1.1.1",
"react": "18.3.1",
"react-reconciler": "0.29.2",
"rimraf": "6.0.1",
"schummar-queue": "0.2.0",
"semantic-release": "24.1.3",
"tsx": "4.19.1",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.3",
"xterm-headless": "5.2.1"
},
"files": [
"dist",
"cli.js"
],
"volta": {
"node": "20.12.1",
"pnpm": "8.15.6"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}