-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.59 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.59 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@adnbn/plugin-remote-config",
"version": "0.3.1",
"description": "Remote config plugin for Addon Bone",
"keywords": [
"adnbn",
"browser",
"chrome",
"opera",
"firefox",
"safari",
"edge",
"extension",
"config",
"remote"
],
"repository": {
"type": "git",
"url": "https://github.com/addon-stack/plugin-remote-config"
},
"homepage": "https://github.com/addon-stack/plugin-remote-config",
"bugs": {
"url": "https://github.com/addon-stack/plugin-remote-config/issues"
},
"license": "MIT",
"author": "Addon Stack <addonbonedev@gmail.com>",
"contributors": [
"Anjey Tsibylskij (https://github.com/atldays)"
],
"type": "module",
"files": [
"plugin",
"dist-types"
],
"types": "./dist-types/index.d.ts",
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"default": "./plugin/index.ts"
},
"./api": {
"types": "./dist-types/api.d.ts",
"default": "./plugin/api.ts"
},
"./hooks": {
"types": "./dist-types/hooks.d.ts",
"default": "./plugin/hooks.ts"
},
"./service": {
"types": "./dist-types/service.d.ts",
"default": "./plugin/service.ts"
}
},
"scripts": {
"prepare": "husky",
"build:types": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build:types",
"format": "biome format --write .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:aggressive": "biome check --write --unsafe .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "jest --bail --passWithNoTests",
"test:ci": "jest --ci --passWithNoTests --coverage",
"release": "release-it"
},
"dependencies": {
"await-lock": "^3.0.0",
"date-fns": "^2.25.0",
"is-url": "^1.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@release-it/conventional-changelog": "^10.0.1",
"@types/is-url": "^1.2.32",
"@types/react": "^19.0",
"@types/react-dom": "^19.0",
"@types/chrome": "^0.1.12",
"@types/jest": "^30.0.0",
"adnbn": "^0.4.2",
"husky": "^9.1.7",
"jest": "^30.1.3",
"release-it": "^19.0.5",
"typescript": "^5.9.2"
},
"peerDependencies": {
"adnbn": ">=0.4.0",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"overrides": {
"glob": "^9.3.5",
"source-map": "npm:source-map-js@^1.2.0"
}
}