-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "feedbackfin",
"version": "1.0.3",
"license": "Apache-2.0",
"homepage": "https://feedbackfin.com",
"repository": {
"type": "git",
"url": "https://github.com/rowyio/feedbackfin.git"
},
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "./dist/src/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "node ./generate-form-html && microbundle --define process.env.NODE_ENV=production",
"dev": "node ./generate-form-html && microbundle watch --define process.env.NODE_ENV=production",
"prepare": "husky install && node ./generate-form-html && git add src/form-html.ts && microbundle --define process.env.NODE_ENV=production"
},
"devDependencies": {
"@floating-ui/dom": "^0.4.2",
"focus-trap": "^6.7.3",
"html-minifier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"microbundle": "^0.14.2",
"prettier": "^2.6.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}