-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.21 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.21 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
{
"name": "@11ty/webc",
"version": "0.12.0-beta.2",
"description": "Single File Web Components",
"main": "webc.js",
"type": "module",
"scripts": {
"test": "npx ava"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"web-components",
"custom-elements",
"html"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"ava": {
"failFast": false,
"files": [
"./test/*Test.js",
"./test/**/*test.js"
]
},
"dependencies": {
"@11ty/eleventy-utils": "^2.0.7",
"css-tree": "^3.1.0",
"dependency-graph": "^1.0.0",
"entities": "^7.0.0",
"fast-glob": "^3.3.3",
"import-module-string": "^2.0.3",
"is-glob": "^4.0.3",
"nanoid": "^5.1.6",
"parse5": "^8.0.0"
},
"devDependencies": {
"@11ty/eleventy-img": "^6.0.4",
"ava": "^6.4.1",
"markdown-it": "^14.1.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/webc"
},
"bugs": {
"url": "https://github.com/11ty/webc/issues"
},
"homepage": "https://github.com/11ty/webc"
}