-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "eleventy-plugin-phosphoricons",
"version": "2.0.0",
"description": "A flexible icon family for interfaces, diagrams, presentations — whatever, really.",
"type": "module",
"main": ".eleventy.cjs",
"module": ".eleventy.js",
"exports": {
".": {
"import": "./.eleventy.js",
"require": "./.eleventy.cjs"
}
},
"scripts": {
"update:icons.json": "node ./fetchIconsNames.js",
"build": "npx eleventy --config=./demo/.eleventy.js --input=./demo --output=./_site",
"dev": "npx eleventy --serve --config=./demo/.eleventy.js --input=./demo --output=./_site",
"test": "npx eleventy --config=./demo/.eleventy.js --input=./demo --output=./_site "
},
"repository": {
"type": "git",
"url": "git+https://github.com/reatlat/eleventy-plugin-phosphoricons.git"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"11ty",
"phosphor",
"icons",
"phosphor-icons"
],
"author": {
"name": "Alex Zappa",
"email": "alex@zappa.dev",
"url": "https://alex.zappa.dev/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reatlat/eleventy-plugin-phosphoricons/issues"
},
"homepage": "https://eleventy-plugin-phosphoricons.netlify.app/",
"dependencies": {
"@phosphor-icons/core": "^2.1.1",
"linkedom": "^0.18.12"
},
"peerDependencies": {
"@11ty/eleventy": ">=2.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2"
}
}