-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.26 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.26 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@addon-core/storage",
"version": "0.6.0",
"description": "Typed storage for browser extensions with atomic updates, namespaces, encryption, and React bindings.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/addon-stack/storage.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://github.com/addon-stack/storage",
"bugs": {
"url": "https://github.com/addon-stack/storage/issues"
},
"keywords": [
"storage",
"addon",
"extension",
"browser",
"chrome",
"firefox",
"edge",
"opera",
"safari",
"react"
],
"author": "Anjey Tsibylskij (https://github.com/atldays)",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/adapters/*/index.d.ts",
"import": "./dist/adapters/*/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsup",
"prepublishOnly": "npm run build",
"dev": "tsup --watch",
"format": "biome format --write .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"test": "jest",
"test:ci": "jest --ci --passWithNoTests --coverage",
"test:related": "jest --bail --passWithNoTests --findRelatedTests",
"typecheck": "tsc -p tsconfig.json --noEmit",
"release": "release-it",
"release:preview": "release-it --no-github.release --no-npm.publish --no-git.tag --ci"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,cjs,mjs}": [
"biome check --write --unsafe",
"npm run test:related --"
],
"*.{json,css,scss,html}": [
"biome format --write"
]
},
"overrides": {
"glob": "^9.3.5",
"source-map": "npm:source-map-js@^1.2.0",
"undici": "6.24.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@microsoft/api-extractor": "^7.52.13",
"@release-it/conventional-changelog": "^10.0.1",
"@swc/core": "^1.7.0",
"@swc/jest": "^0.2.36",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.18.4",
"@types/react": "^19.1.13",
"esbuild-fix-imports-plugin": "^1.0.22",
"husky": "^9.0.11",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-webextension-mock": "^4.0.0",
"lint-staged": "^15.2.10",
"release-it": "^19.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@addon-core/browser": "^0.5.0",
"dequal": "^2.0.3"
},
"peerDependencies": {
"@types/chrome": "*",
"@types/react": "*",
"@types/react-dom": "*",
"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"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
}