-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.46 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
{
"name": "@firefoxic/conjure",
"description": "🪄 Conjure images, icons and favicons for your frontend project.",
"version": "3.0.1",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "[email protected]"
},
"homepage": "https://github.com/firefoxic/conjure#readme",
"bugs": {
"url": "https://github.com/firefoxic/conjure/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/firefoxic/conjure.git"
},
"bin": {
"conjure": "bin/cli.js",
"whoosh": "bin/cli.js",
"woosh": "bin/cli.js"
},
"type": "module",
"exports": "./lib/index.js",
"files": [
"./lib/"
],
"engines": {
"pnpm": "^9.12.3",
"node": "^20.13 || >=22.11"
},
"packageManager": "[email protected]",
"dependencies": {
"globby": "^14.0.2",
"ico-endec": "^0.1.6",
"meow": "^13.2.0",
"sharp": "^0.33.5",
"svgo": "^3.3.2"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"lint": "eslint",
"pretest": "pnpm lint",
"test": "node --test",
"preversion": "pnpm test",
"version": "update-changelog",
"postversion": "pnpm publish --provenance --access public --no-git-checks",
"postpublish": "git push --follow-tags"
},
"devDependencies": {
"@firefoxic/update-changelog": "^1.0.0",
"@firefoxic/eslint-config": "^5.0.0",
"eslint": "^9.17.0"
},
"keywords": [
"conjure",
"image",
"icon",
"favicon",
"optimize",
"vector",
"svg",
"convert",
"raster",
"webp",
"avif",
"ico",
"prepare",
"frontend"
]
}