-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.02 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
{
"name": "tsmk",
"type": "module",
"version": "0.7.0",
"description": "Make code review, unit test, and CI/CD works the way just like github actions with typescript",
"author": "tmg0",
"license": "MIT",
"homepage": "https://github.com/tmg0/tsmk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tmg0/tsmk.git"
},
"bugs": {
"url": "https://github.com/tmg0/tsmk/issues"
},
"keywords": [
"job",
"actions",
"cicd",
"javascript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./docker": {
"types": "./dist/docker.d.ts",
"import": "./dist/docker.js"
},
"./git": {
"types": "./dist/git.d.ts",
"import": "./dist/git.js"
},
"./sed": {
"types": "./dist/sed.d.ts",
"import": "./dist/sed.js"
},
"./volta": {
"types": "./dist/volta.d.ts",
"import": "./dist/volta.js"
},
"./*": [
"./*",
"./*.d.ts"
]
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/fs/*",
"./*"
]
}
},
"bin": {
"tsmk": "./bin/tsmk.mjs"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"destr": "^2.0.3",
"execa": "^9.5.1",
"joycon": "^3.1.1",
"log-update": "^6.1.0",
"oxrun": "^0.2.6",
"pacote": "^21.0.0",
"semver": "^7.6.3",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/node": "^22.0.0",
"@types/pacote": "^11.1.8",
"@types/semver": "^7.5.8",
"@types/ssh2": "^1.15.1",
"eslint": "^9.16.0",
"fast-glob": "^3.3.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}