vue-common/package.json

44 lines
1.0 KiB
JSON

{
"name": "@jdbernard/vue-common",
"version": "1.0.4",
"description": "Extra stuff I always use when building Vue applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js",
"./injector": "./dist/injector.js",
"./sorting": "./dist/sorting.js",
"./state": "./dist/state.js",
"./toast.service": "./dist/toast.service.js",
"./util": "./dist/util.js"
},
"scripts": {
"build": "tsc --build tsconfig.json && cp -r src/components dist/.",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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"
}
}