-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "eleventy-plugin-icons",
"version": "4.5.1",
"description": "A plugin for Eleventy to add and transform icons from any icon set.",
"author": "uncenter <[email protected]>",
"repository": "uncenter/eleventy-plugin-icons",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"build": "unbuild",
"test:setup": "pnpm build && cd test/fixtures && pnpm eleventy",
"test": "pnpm run test:setup && vitest",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin"
],
"dependencies": {
"fast-xml-parser": "^4.4.0",
"just-extend": "^6.2.0",
"just-memoize": "^2.2.0",
"just-typeof": "^3.2.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.14",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vitest": "^0.4.1",
"lucide-static": "^0.407.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=16.20.2"
},
"packageManager": "[email protected]"
}