-
Notifications
You must be signed in to change notification settings - Fork 663
/
package.json
43 lines (43 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "foam",
"version": "0.2.0",
"description": "Foam",
"repository": "[email protected]:foambubble/foam.git",
"license": "MIT",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"version-extension": "lerna version",
"package-extension": "yarn workspace foam-vscode package-extension",
"install-extension": "yarn workspace foam-vscode install-extension",
"publish-extension": "yarn workspace foam-vscode publish-extension",
"reset": "yarn && yarn clean && yarn build",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "yarn workspace foam-vscode test --stream",
"lint": "lerna run lint",
"watch": "lerna run watch --concurrency 20 --stream"
},
"devDependencies": {
"all-contributors-cli": "^6.16.1",
"lerna": "^6.4.1"
},
"engines": {
"node": ">=18"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {}
}