@ohbug/extension-feedback 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -6
- package/README.md +22 -25
- package/dist/index.js +6 -6
- package/dist/index.mjs +447 -444
- package/package.json +12 -30
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohbug/extension-feedback",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Ohbug extension to collect user feedback",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "chenyueban <jasonchan0527@gmail.com>",
|
|
7
|
-
"homepage": "https://github.com/ohbug-org/
|
|
7
|
+
"homepage": "https://github.com/ohbug-org/extensions",
|
|
8
8
|
"bugs": {
|
|
9
|
-
"url": "https://github.com/ohbug-org/
|
|
9
|
+
"url": "https://github.com/ohbug-org/extensions/issues"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "https://github.com/ohbug-org/
|
|
13
|
+
"url": "https://github.com/ohbug-org/extensions"
|
|
14
14
|
},
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"module": "dist/index.mjs",
|
|
@@ -25,36 +25,13 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"prebuild": "rimraf dist",
|
|
30
|
-
"dev": "vite build -w",
|
|
31
|
-
"build": "vite build",
|
|
32
|
-
"release": "release-it",
|
|
33
|
-
"preinstall": "npx only-allow pnpm",
|
|
34
|
-
"update:deps": "pnpm update -i -r --latest",
|
|
35
|
-
"lint": "tsc && eslint . --fix",
|
|
36
|
-
"prepare": "husky install"
|
|
37
|
-
},
|
|
38
28
|
"dependencies": {
|
|
39
|
-
"@ohbug/types": "^2.1.
|
|
40
|
-
"@ohbug/utils": "^2.0.
|
|
29
|
+
"@ohbug/types": "^2.1.1",
|
|
30
|
+
"@ohbug/utils": "^2.0.6",
|
|
41
31
|
"html2canvas": "^1.4.1",
|
|
42
32
|
"solid-js": "^1.4.8"
|
|
43
33
|
},
|
|
44
34
|
"devDependencies": {
|
|
45
|
-
"@chenyueban/eslint-config": "^1.0.12",
|
|
46
|
-
"@chenyueban/tsconfig": "^2.1.0",
|
|
47
|
-
"@commitlint/cli": "^17.0.3",
|
|
48
|
-
"@commitlint/config-conventional": "^17.0.3",
|
|
49
|
-
"@release-it/conventional-changelog": "^5.0.0",
|
|
50
|
-
"commitizen": "^4.2.5",
|
|
51
|
-
"cz-conventional-changelog": "3.3.0",
|
|
52
|
-
"eslint": "^8.20.0",
|
|
53
|
-
"husky": "^8.0.1",
|
|
54
|
-
"lint-staged": "^13.0.3",
|
|
55
|
-
"release-it": "^15.1.4",
|
|
56
|
-
"rimraf": "^3.0.2",
|
|
57
|
-
"typescript": "^4.7.4",
|
|
58
35
|
"vite": "^3.0.4",
|
|
59
36
|
"vite-plugin-dts": "^1.4.1",
|
|
60
37
|
"vite-plugin-solid": "^2.3.0",
|
|
@@ -63,5 +40,10 @@
|
|
|
63
40
|
},
|
|
64
41
|
"publishConfig": {
|
|
65
42
|
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"prebuild": "rimraf dist",
|
|
46
|
+
"build": "vite build",
|
|
47
|
+
"dev": "vite build -w"
|
|
66
48
|
}
|
|
67
|
-
}
|
|
49
|
+
}
|