mirror of
https://github.com/foambubble/foam.git
synced 2026-04-24 03:01:01 -04:00
* reorganized and updated foam docs * minor changes to vscode extension readme * added 404 page and minor changes Co-authored-by: Joe Previte <jjprevite@gmail.com>
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "foam",
|
|
"version": "0.2.0",
|
|
"description": "Foam",
|
|
"repository": "git@github.com:foambubble/foam.git",
|
|
"author": "Jani Eväkallio <jani.evakallio@gmail.com>",
|
|
"license": "MIT",
|
|
"private": "true",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"start:vscode": "yarn workspace foam-vscode vscode:start-debugging",
|
|
"build:core": "yarn workspace foam-core build",
|
|
"watch:core": "yarn workspace foam-core start",
|
|
"test:core": "yarn workspace foam-core test",
|
|
"vscode:package-extension": "yarn workspace foam-vscode package-extension",
|
|
"vscode:install-extension": "yarn workspace foam-vscode install-extension",
|
|
"vscode:publish-extension": "yarn workspace foam-vscode publish-extension",
|
|
"reset": "yarn clean && yarn build && yarn test",
|
|
"clean": "lerna run clean",
|
|
"build": "lerna run build",
|
|
"test": "lerna run test",
|
|
"lint": "lerna run lint",
|
|
"watch": "lerna run watch --concurrency 20 --stream"
|
|
},
|
|
"devDependencies": {
|
|
"all-contributors-cli": "^6.16.1",
|
|
"lerna": "^3.22.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "tsdx lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|