34 lines
863 B
JSON
34 lines
863 B
JSON
{
|
|
"name": "@jdbernard/vue-common",
|
|
"version": "1.0.7",
|
|
"description": "Extra stuff I always use when building Vue applications.",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.json && cp -r src/components dist/.",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"do-publish": "npm run build && 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.21.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"@jdbernard/logging": "^1.1.3",
|
|
"mitt": "^3.0.0",
|
|
"vue": "^3.2.47"
|
|
}
|
|
}
|