-
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.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 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": "browser-extension-settings",
"version": "0.9.0",
"description": "Settings module for developing browser extensions and userscripts",
"type": "module",
"main": "./lib/index.ts",
"exports": {
".": "./lib/index.ts"
},
"scripts": {
"p": "prettier --write .",
"lint": "run-s lint:*",
"lint:code": "prettier --write . && xo --fix",
"lint:type": "tsc --noemit",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utags/browser-extension-settings.git"
},
"keywords": [
"extensions",
"userscripts",
"settings"
],
"author": "Pipecraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/utags/browser-extension-settings/issues"
},
"homepage": "https://github.com/utags/browser-extension-settings#readme",
"dependencies": {
"browser-extension-i18n": "^0.1.3",
"browser-extension-storage": "^0.2.10",
"browser-extension-utils": "^0.5.1"
},
"devDependencies": {
"@types/chrome": "^0.1.38",
"@vitest/coverage-v8": "^4.1.0",
"jsdom": "^29.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"xo": "^2.0.2"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
}
}