-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.8 KB
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
{
"name": "@wethegit/masher",
"version": "1.1.2",
"type": "module",
"files": [
"dist"
],
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"start": "tsup --watch",
"build": "rm -rf dist && tsup",
"lint": "eslint src/ --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@types/fs-extra": "~11.0.4",
"@types/glob": "~8.1.0",
"@types/image-size": "~0.8.0",
"@types/md5-file": "~5.0.0",
"@types/node": "~20.17.16",
"@types/sharp": "~0.32.0",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-import": "~2.31.0",
"husky": "~9.1.7",
"lint-staged": "~15.2.10",
"prettier": "~3.3.3",
"tsup": "~8.5.0",
"typescript": "~5.7.3"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://wethegit.github.io/masher/",
"repository": {
"type": "git",
"url": "git+https://github.com/wethegit/masher.git"
},
"bugs": {
"url": "https://github.com/wethegit/masher/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*": "prettier -w -u"
},
"dependencies": {
"@changesets/changelog-github": "~0.5.0",
"@changesets/cli": "~2.29.7",
"chalk": "~5.3.0",
"fs-extra": "~11.2.0",
"glob": "~11.0.0",
"image-size": "~1.2.1",
"md5-file": "~5.0.0",
"node-watch": "~0.7.4",
"sharp": "~0.33.5"
}
}