35 lines
895 B
JSON
35 lines
895 B
JSON
{
|
|
"name": "@jdbernard/vue-common",
|
|
"version": "1.0.6",
|
|
"description": "Extra stuff I always use when building Vue applications.",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"build": "true",
|
|
"build-actual": "tsc --build tsconfig.json && cp -r src/components dist/.",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"publish": "npm run build-actual && cp package.json dist/. && (cd dist && npm publish)"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.jdb-software.com/jdb/vue-common.git"
|
|
},
|
|
"keywords": [
|
|
"vuejs",
|
|
"vue",
|
|
"state",
|
|
"util"
|
|
],
|
|
"author": "Jonathan Bernard <jonathan@jdbernard.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/types": "^7.17.0",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"dependencies": {
|
|
"@jdbernard/logging": "^1.1.3",
|
|
"mitt": "^3.0.0",
|
|
"vue": "^3.2.29"
|
|
}
|
|
}
|