-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "@ornery/web-components",
"version": "4.0.3",
"description": "WebComponents html loader and optional runtime mixins to enable creation of custom HTML elements using es6 template literal syntax in *.html files.",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./templates": "./templates.js",
"./loader": "./loader.js",
"./vite": "./vite.js",
"./webpack": "./webpack.js",
"./rollup": "./rollup.js",
"./esbuild": "./esbuild.js",
"./rspack": "./rspack.js",
"./html.d.ts": "./html.d.ts"
},
"types": "./html.d.ts",
"scripts": {
"docs": "jsdoc2md src/loaders/*.js src/*.js > README.md",
"test": "node --test tests/*.test.mjs"
},
"author": "timothyswt@gmail.com",
"license": "MIT",
"dependencies": {
"fastparse": "^1.1.2",
"html-minifier-terser": "^7.2.0",
"sass": "^1.86.0",
"unplugin": "^3.0.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^50.0.0",
"jsdoc": "^4.0.0",
"jsdoc-to-markdown": "^9.0.0",
"jsdom": "^29.1.1"
}
}