-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "xtsz",
"version": "0.0.8",
"description": "TypeScript & Node.js runner with ESM, CJS, and HTTP/S imports support.",
"type": "module",
"bin": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
"./bin": "./dist/index.js"
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup --config ./tsup.config.ts",
"test": "tsx ./test/index.test.ts",
"lint": "rome check . --apply",
"format": "rome format . --write",
"typecheck": "tsc --noEmit",
"prepare-test": "/bin/bash ./scripts/prepare-test.sh",
"release": "pnpm dlx bumpp package.json --commit --push --tag",
"prerelease": "pnpm build",
"prepublishOnly": "pnpm build",
"clean": "rm -rf dist *.tgz",
"prebuild": "rm -rf dist",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"esbuild": "^0.17.19"
},
"devDependencies": {
"tsx": "^3.12.7",
"@types/node": "^20.2.5",
"bumpp": "^9.1.0",
"execa": "^7.1.1",
"rome": "^12.1.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint && pnpm typecheck"
},
"engines": {
"node": ">=18",
"pnpm": ">=8.0.0"
},
"homepage": "github:o-az/xtsz",
"repository": "https://github.com/o-az/xtsz.git",
"bugs": "github:o-az/xtsz/issues",
"author": "Omar Aziz <github@omaraziz.dev> (https://github.com/o-az)",
"keywords": [
"typescript",
"node.js",
"esm",
"cjs",
"runner",
"esbuild",
"https-imports"
],
"license": "MIT"
}