forked from isaacs/tshy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.93 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
{
"name": "tshy",
"version": "1.11.1",
"description": "TypeScript HYbridizer - Hybrid (CommonJS/ESM) TypeScript node package builder",
"author": "Isaac Z. Schlueter <[email protected]> (https://izs.me)",
"license": "BlueOak-1.0.0",
"type": "module",
"bin": "./dist/esm/index.js",
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"foreground-child": "^3.1.1",
"mkdirp": "^3.0.1",
"polite-json": "^4.0.1",
"resolve-import": "^1.4.4",
"rimraf": "^5.0.1",
"sync-content": "^1.0.2",
"typescript": "5.2 || 5.3",
"walk-up-path": "^3.0.1"
},
"scripts": {
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"prepare": "tsc -p .tshy/esm.json && bash scripts/fixup.sh",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"format": "prettier --write . --ignore-path ./.prettierignore --cache",
"typedoc": "typedoc",
"test": "tap",
"snap": "tap"
},
"tap": {
"coverage-map": "map.js"
},
"engines": {
"node": "16 >=16.17 || 18 >=18.15.0 || >=20.6.1"
},
"repository": "https://github.com/isaacs/tshy",
"keywords": [
"typescript",
"tsc",
"hybrid",
"esm",
"commonjs",
"build"
],
"devDependencies": {
"@types/node": "^20.8.6",
"prettier": "^2.8.8",
"tap": "^18.5.2",
"typedoc": "^0.25.7"
},
"prettier": {
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"tshy": {
"dialects": [
"esm"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
}
}