mirror of
https://github.com/foambubble/foam.git
synced 2026-01-12 23:48:19 -05:00
42 lines
985 B
JSON
42 lines
985 B
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": {
|
|
"watch:vscode": "yarn workspace foam-vscode watch",
|
|
"build:core": "yarn workspace foam-core build",
|
|
"watch:core": "yarn workspace foam-core start",
|
|
"test:core": "yarn workspace foam-core 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": ">=10"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "tsdx lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|