-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 4.03 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "dd",
"version": "0.26.0",
"description": "Devops commands for your nodejs and serverless projects",
"keywords": [
"devops",
"nodejs",
"serverless",
"aws"
],
"homepage": "https://github.com/inocan-group/devops#readme",
"bugs": {
"url": "https://github.com/inocan-group/devops/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inocan-group/devops.git"
},
"license": "MIT",
"author": "Ken Snyder",
"exports": {
"*": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"type": "module",
"bin": {
"dd": "./bin/dd.js",
"do": "./bin/dd.js"
},
"files": [
"bin",
"templates",
"dist"
],
"scripts": {
"build": "tsup src/dd.ts --format=esm -d bin --clean && chmod +x bin/dd.js",
"circular": "pnpm madge src --extensions ts --circular",
"dd": "./bin/dd.js",
"leaves": "pnpm madge src --extensions ts --leaves",
"lint": "run-p lint:*",
"lint:src": "yarn eslint src/**/*.ts --fix ",
"lint:test": "yarn eslint test/**/*.ts --fix",
"lint:tsc": "yarn tsc --noEmit",
"orphans": "yarn madge src --extensions ts --orphans",
"prepublishOnly": "run-s lint build",
"summary": "yarn madge src --extensions ts --summary",
"test": "vitest",
"test:ui": "vitest ui",
"test:ci": "vitest run",
"visualize": "yarn madge src --extensions ts -i /tmp/dep-ts-visualize.png && open /tmp/dep-ts-visualize.png",
"visualize:js": "yarn madge bin --extensions js -i /tmp/dep-js-visualize.png && open /tmp/dep-js-visualize.png",
"warnings": "yarn madge src --extensions ts --warnings",
"watch": "run-p watch:*",
"watch:test": "vitest",
"watch:bundle": "tsup src/dd.ts --format=esm -d bin --watch",
"audit:fix": "pnpm audit --fix",
"release": "run-s lint release:latest audit:fix build test:ci release:bump",
"release:latest": "pnpm install",
"release:bump": "bumpp"
},
"peerDependencies": {
"exiftool-vendored": "^19.0.0",
"sharp": "^0.31.2"
},
"dependencies": {
"ast-types": "^0.14.2",
"async-shelljs": "^0.1.4",
"aws-sdk": "^2.1304.0",
"aws-ssm": "^0.4.0",
"bestzip": "^2.2.1",
"brilliant-errors": "^0.7.3",
"callsites": "^4.0.0",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"common-types": "^1.33.2",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"destr": "^1.2.2",
"diff": "^5.1.0",
"exiftool-vendored": "^19.0.0",
"find-up": "^6.3.0",
"globby": "^13.1.3",
"inferred-types": "^0.37.6",
"inquirer": "^9.1.4",
"js-yaml": "^4.1.0",
"madge": "^5.0.2",
"matcher": "^5.0.0",
"native-dash": "^1.25.0",
"pathe": "^1.1.0",
"play-sound": "^1.1.5",
"recast": "^0.22.0",
"sharp": "^0.31.3",
"shelljs": "^0.8.5",
"simple-git": "^3.16.0",
"smartwrap": "^2.0.2",
"table": "^6.8.1",
"ts-morph": "^17.0.1",
"typed-mapper": "^0.4.2",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/diff": "^5.0.2",
"@types/exif": "^0.6.3",
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.18.11",
"@types/prettier": "^2.7.2",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitest/ui": "^0.28.3",
"bumpp": "^8.2.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.28.3",
"vue": "^3.2.45"
},
"pnpm": {
"overrides": {
"simple-git@<3.5.0": ">=3.5.0"
}
}
}