-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "@kagal/cross-test",
"version": "0.1.3",
"type": "module",
"description": "Cross-platform shell conditions and file tests",
"license": "MIT",
"homepage": "https://github.com/kagal-dev/cross-test#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kagal-dev/cross-test.git"
},
"bugs": "https://github.com/kagal-dev/cross-test/issues",
"keywords": [
"cli",
"cross-platform",
"file-test",
"posix",
"shell"
],
"bin": {
"cross-test": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist node_modules",
"dev": "tsup --watch",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"precommit": "run-s lint typecheck build test",
"prepack": "eslint --fix package.json && run-s lint:check typecheck build test",
"test": "vitest run",
"test:compat": "node src/__tests__/compat.mjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@poupe/eslint-config": "~0.9.1",
"@types/node": "^20.19.37",
"eslint": "~9.39.4",
"npm-run-all2": "^8.0.4",
"pkg-pr-new": "^0.0.66",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "~5.9.3",
"vitest": "^4.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"publishConfig": {
"access": "public",
"provenance": true
}
}