-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "@axhxrx/script",
"version": "0.1.6",
"type": "module",
"bin": {
"retry-command": "./bin/retry-command.ts"
},
"exports": {
".": "./src/mod.ts"
},
"license": "MIT",
"engines": {
"node": ">=24.2.0"
},
"dependencies": {
"@axhxrx/utf8-count": "npm:@jsr/axhxrx__utf8-count",
"@axhxrx/write-new-file": "npm:@jsr/axhxrx__write-new-file@^0.1.0"
},
"devDependencies": {
"@axhxrx/test": "npm:@jsr/axhxrx__test@^0.1.1",
"@std/assert": "npm:@jsr/std__assert",
"@std/expect": "npm:@jsr/std__expect",
"@std/testing": "npm:@jsr/std__testing",
"@types/bun": "^1.3.11"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"check": "dprint check && deno check && deno lint && bun tsc --noEmit",
"test:bun": "bun test",
"test:node": "node --test --test-isolation=none $(find src tools -name '*.test.ts' ! -name '*.bun.test.ts')",
"test:deno": "deno test -A $(find src tools -name '*.test.ts' ! -name '*.bun.test.ts')",
"test": "bun run test:bun && bun run test:node && bun run test:deno"
}
}