-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) 路 1.04 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.04 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
{
"name": "addonova",
"version": "1.0.4",
"description": "Web Extension Framework",
"type": "module",
"scripts": {
"test": "node --test"
},
"bin": {
"addonova": "./bin/addonova.js"
},
"exports": {
".": "./src/index.js",
"./*": "./src/*.js"
},
"files": [
"bin/",
"src/",
"templates/"
],
"dependencies": {
"chokidar": "^5.0.0",
"esbuild": "^0.27.3",
"globby": "^16.1.0",
"html-minifier-terser": "^7.2.0",
"htmlhint": "^1.9.2",
"web-ext": "^10.3.0",
"yazl": "^3.3.1"
},
"overrides": {
"encoding-sniffer": "^1.0.2",
"jsdom": "^29.1.1"
},
"keywords": [
"chrome",
"web",
"extension",
"browser",
"bundler",
"framework"
],
"license": "ISC",
"author": "Hemanta gayen",
"repository": {
"type": "git",
"url": "git+https://github.com/code-hemu/addonova.git"
},
"homepage": "https://github.com/code-hemu/addonova#readme",
"bugs": {
"url": "https://github.com/code-hemu/addonova/issues"
},
"engines": {
"node": ">=20.19"
}
}