-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 2.49 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tsimp",
"version": "2.0.12",
"license": "BlueOak-1.0.0",
"repository": "https://github.com/tapjs/tsimp",
"files": [
"dist"
],
"bin": {
"tsimp": "dist/esm/bin.mjs"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
"./loader": "./src/hooks/legacy-loader.mts",
"./import": "./src/hooks/import.mts",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
"./loader": {
"import": {
"types": "./dist/esm/hooks/legacy-loader.d.mts",
"default": "./dist/esm/hooks/legacy-loader.mjs"
}
},
"./import": {
"import": {
"types": "./dist/esm/hooks/import.d.mts",
"default": "./dist/esm/hooks/import.mjs"
}
},
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"scripts": {
"prepare": "tshy",
"format": "prettier --write . --log-level warn --cache",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"snap": "tap",
"test": "tap",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"typedoc": "typedoc"
},
"dependencies": {
"@isaacs/cached": "^1.0.1",
"@isaacs/catcher": "^1.0.4",
"foreground-child": "^3.1.1",
"mkdirp": "^3.0.1",
"pirates": "^4.0.6",
"rimraf": "^6.0.1",
"signal-exit": "^4.1.0",
"sock-daemon": "^1.4.2",
"walk-up-path": "^4.0.0"
},
"peerDependencies": {
"typescript": "^5.1.0"
},
"devDependencies": {
"@swc-node/register": "^1.10.9",
"@types/node": "^22.7.8",
"chalk": "^5.3.0",
"prettier": "^3.3.3",
"swc": "^1.0.11",
"tap": "^21.0.1",
"ts-node": "^10.9.1",
"tshy": "^3.0.2",
"tsx": "^4.1.2",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
},
"prettier": {
"experimentalTernaries": true,
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"type": "module",
"tap": {
"coverage-map": "map.js",
"fail-skip": true
},
"engines": {
"node": "16 >=16.17.0 || 18 >= 18.6.0 || >=20"
},
"module": "./dist/esm/index.js"
}