-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 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
{
"name": "blur-images",
"version": "0.0.2",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./cli": "./dist/cli.js",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"sideEffects": false,
"bin": {
"blur-images": "./bin/cli.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"test:cli": "node ./dist/cli.mjs -w -p 1234 -c awesome",
"type-check": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx src --color",
"start": "esno test/test.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"changelog": "npx changeloggithub@latest --all true && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md'",
"release": "bumpp -r && npm run changelog"
},
"author": "hunghg255",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.8",
"@types/lodash": "^4.17.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.33",
"bumpp": "^9.4.1",
"bunchee": "^5.1.5",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"globby": "^14.0.1",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"verify-commit-msg": "^0.0.10",
"vitest": "^0.34.6"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [],
"homepage": "https://github.com/hunghg255/blur-images",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/blur-images"
},
"bugs": {
"url": "https://github.com/hunghg255/blur-images/issues"
},
"dependencies": {
"p-map": "^7.0.2",
"sharp": "^0.33.4"
}
}