-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.44 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@dinoreic/fez",
"version": "0.5.3",
"description": "Runtime custom DOM elements lib",
"main": "dist/fez.js",
"type": "module",
"types": "fez.d.ts",
"exports": {
".": {
"types": "./fez.d.ts",
"import": "./dist/fez.js"
},
"./rollup": "./src/rollup.js",
"./log": "./src/log.js",
"./svelte": "./src/svelte-cde-adapter.coffee",
"./package.json": "./package.json"
},
"bin": {
"fez": "bin/fez"
},
"files": [
"bin",
"browser-ai",
"dist",
"src",
"fez.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"dom",
"elements",
"custom-elements",
"web-components",
"frontend"
],
"author": "Dino Reic",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/dux/fez.git"
},
"bugs": {
"url": "https://github.com/dux/fez/issues"
},
"homepage": "https://github.com/dux/fez#readme",
"devDependencies": {
"coffeescript": "^2.7.0",
"concurrently": "^9.1.2",
"esbuild": "0.23.0",
"esbuild-coffeescript": "^2.2.0",
"eslint": "^8.57.0",
"glob-cli": "^1.0.0",
"happy-dom": "^18.0.1",
"jsdom": "^26.1.0",
"mime": "^4.0.7",
"playwright": "^1.57.0"
},
"scripts": {
"build": "bun build.js b",
"b": "bun run build",
"watch": "bun build.js w",
"server": "bun run lib/server.js",
"dev": "bunx concurrently --kill-others \"bun run server\" \"find src demo lib | entr -cn sh -c 'bun run index && bun run b'\"",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"test": "bun test test/*.test.js && bun test test/browser/*.test.js",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build && bun run test",
"publish": "npm publish --access public",
"index": "ls demo/fez/*.fez | xargs -n1 basename | sed 's/\\.fez$//' | sort | sed 's/^/fez\\//' > demo/fez.txt",
"vscode:lint": "node --check vscode/src/extension.js",
"vscode:test": "node --check vscode/src/extension.js",
"vscode:package": "cd vscode && npx @vscode/vsce package --no-dependencies",
"vscode:install": "cd vscode && npx @vscode/vsce package --allow-missing-repository --no-dependencies && code --install-extension fez-vscode-tools-0.1.0.vsix"
},
"dependencies": {
"glob": "^13.0.0",
"prettier": "^3.8.1"
}
}