-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.92 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
{
"name": "haxx",
"version": "0.7.0",
"description": "a very opinionated runtime for scripts, it simply works",
"packageManager": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"bin": {
"haxx": "./dist/haxx.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./globals": {
"types": "./dist/globals.d.ts",
"import": "./dist/globals.js"
}
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"engines": {
"node": ">= 14.8.0"
},
"scripts": {
"test": "vitest -u",
"prepublish": "nr build",
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henrycunh/isw.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/henrycunh/isw/issues"
},
"homepage": "https://github.com/henrycunh/isw#readme",
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"@antfu/ni": "^0.21.3",
"@types/async-exit-hook": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/mustache": "^4.2.2",
"@types/node": "^20.2.1",
"@types/ps-tree": "^1.1.2",
"@types/which": "^3.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.41.0",
"esmo": "^0.14.1",
"rimraf": "^5.0.1",
"typescript": "^4.9.5",
"unbuild": "^0.6.9",
"vitest": "^0.31.1"
},
"dependencies": {
"async-exit-hook": "^2.0.1",
"axios": "^0.26.1",
"chalk": "^5.2.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.4",
"kleur": "^4.1.5",
"kleur-template": "^0.0.3",
"minimist": "^1.2.8",
"mustache": "^4.2.0",
"ps-tree": "^1.2.0",
"resguard": "^1.2.1",
"which": "^2.0.2",
"yaml": "^1.10.2"
}
}