overmind-vue
Version:
Functional actions
40 lines • 1.03 kB
JSON
{
"name": "overmind-vue",
"version": "28.0.5",
"description": "Functional actions",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:es",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module ES2020 --target ES2020",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck"
},
"keywords": [
"state",
"sideeffects",
"app",
"framework"
],
"files": [
"lib",
"es",
"vue3"
],
"dependencies": {
"overmind": "28.0.3"
},
"devDependencies": {
"@types/node": "^20.3.1",
"tslib": "^2.3.0"
}
}