mirror of
https://github.com/cupcakearmy/formhero.git
synced 2024-12-22 16:16:24 +00:00
31 lines
815 B
JSON
31 lines
815 B
JSON
{
|
|
"name": "formhero",
|
|
"version": "0.0.4",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"prepublishOnly": "rm -rf ./dist && tsc",
|
|
"examples": "parcel -d public ./examples/index.html",
|
|
"examples:build": "rm -rf ./docs && parcel build --no-source-maps --public-url /formhero/ -d docs examples/index.html",
|
|
"build": "tsc",
|
|
"test": "parcel -d public ./test/index.html",
|
|
"watch": "tsc -w",
|
|
"dev": "pnpm run watch & pnpm run test"
|
|
},
|
|
"browserslist": [
|
|
"last 2 Chrome versions",
|
|
"last 2 Firefox versions",
|
|
"last 2 Safari versions"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^16.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^16.9.3",
|
|
"@types/react-dom": "^16.9.1",
|
|
"parcel-bundler": "^1.12.3",
|
|
"react": "^16.9.0",
|
|
"react-dom": "^16.9.0",
|
|
"typescript": "^3.6.2"
|
|
}
|
|
} |