Files
vue-flow/package.json
Braks 3bbe92a4ea feat(docs): replace vitepress with vuepress
* vitepress too limited
2022-04-04 21:42:48 +02:00

36 lines
1018 B
JSON

{
"name": "@braks/vue-flow-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"tests",
"examples",
"docs",
"package"
],
"scripts": {
"prepare": "ts-patch install -s",
"dev": "yarn --cwd examples dev",
"docs": "yarn --cwd docs dev",
"build": "yarn --cwd package build",
"postbuild": "yarn typedoc",
"release": "yarn --cwd package np",
"test": "yarn --cwd tests test",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"typedoc": "typedoc --tsconfig ./package/tsconfig.docs.json ./package/dist/index.d.ts --out typedocs"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.4.1",
"shx": "^0.3.4",
"ts-patch": "^2.0.1",
"typedoc": "^0.22.13",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1"
}
}