-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "unitium",
"version": "0.8.3",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.18"
},
"scripts": {
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"test:node": "npm run build:node && tsx ./distribution/node/environments/cli/node/exec-tsx.js ./source",
"test:deno": "npm run build:deno && deno run --config ./distribution/deno/deno.json --no-lock --allow-read ./distribution/deno/cli.ts ./source",
"test:bun": "npm run build:node && bun ./distribution/node/cli.js ./source",
"test:matrix": "npm run build:node && npm run build:deno && tsx ./tests/all-environments.ts",
"e2e:deno": "cd tests/fixtures/cli-end2end/deno && deno x jsr:@elemental/unitium/cli",
"build:node": "tsx ./build-npm-package.ts",
"build:deno": "tsx ./build-jsr-package.ts",
"publish:npm": "npm run build:node && npm publish ./distribution/node",
"publish:jsr": "npm run build:deno && cd distribution/deno && deno publish"
},
"devDependencies": {
"@types/node": "^22.18.0",
"tsx": "^4.20.6",
"typescript": "^5.8.0"
},
"dependencies": {
"deferium": "^0.1.1",
"ignore": "^7.0.5"
}
}