-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 KB
/
package.json
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
{
"name": "@ohbug/extension-feedback",
"version": "0.7.3",
"description": "Ohbug extension to collect user feedback",
"license": "MIT",
"homepage": "https://github.com/ohbug-org/extensions",
"bugs": {
"url": "https://github.com/ohbug-org/extensions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ohbug-org/extensions"
},
"author": "chenyueban <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "vite build",
"dev": "vite build -w"
},
"dependencies": {
"@ohbug/types": "^2.2.1",
"@ohbug/utils": "^2.0.8",
"solid-js": "^1.7.11"
},
"devDependencies": {
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vite-plugin-solid": "^2.7.0"
}
}