-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "define-html",
"version": "3.0.0",
"description": "Define custom element to import in html",
"main": "dist/index.js",
"type": "module",
"bin": {
"define-html": "dist/bin.js"
},
"scripts": {
"start": "http-server --cors --a localhost -p 3000",
"watch": "bun build ./src/index.ts --outdir ./dist --watch",
"build": "bun build ./src/index.ts --outdir ./dist",
"build:bin": "bun build ./src/bin.ts --target node --outdir ./dist",
"compile": "cd example && bun ../src/bin.ts --remote",
"lint": "bunx biome lint",
"test": "playwright test",
"test:local": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infodusha/define-html.git"
},
"keywords": [
"html",
"define",
"import",
"include",
"component",
"components",
"framework",
"web-components",
"custom-elements"
],
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"author": "infodusha",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.45.3",
"http-server": "^14.1.1",
"typescript": "~5.5.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"fast-glob": "^3.3.2"
}
}