mirror of
https://github.com/foambubble/foam.git
synced 2026-01-10 06:28:12 -05:00
* added common code from vscode repo lots of good utility functions and objects, especially around lifecycle and event management * added datastore and logger services * refactored bootstrap to consolidate behavior in foam-core * tags treeview now updates when files are saved * updated node engine version to match vscode's * using new event model for foam graph events
45 lines
1.2 KiB
JSON
45 lines
1.2 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",
|
|
"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"
|
|
}
|
|
}
|