-
Notifications
You must be signed in to change notification settings - Fork 774
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.81 KB
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
44
45
46
47
48
49
50
51
52
53
{
"name": "foam",
"version": "0.2.0",
"description": "Foam",
"repository": "git@github.com:foambubble/foam.git",
"license": "MIT",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version",
"tag-release": "node scripts/tag-release.js",
"package-extension": "yarn workspace foam-vscode package",
"install-extension": "yarn workspace foam-vscode install-extension",
"release-extension": "yarn workspace foam-vscode release",
"release-cli": "yarn workspace @foam/cli release",
"release-core": "yarn workspace @foam/core release",
"release": "npm login && yarn release-core && yarn release-cli && yarn release-extension && yarn tag-release",
"publish:docs-site": "yarn build && node packages/foam-cli/out/index.js export ./docs --out ./.tmp/foam-docs-site --title \"Foam\" --description \"Using Foam\" --content-root user --site-url https://docs.foam.md",
"reset": "yarn && yarn clean && yarn build",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "lerna run test",
"test:unit": "lerna run test:unit",
"test:e2e": "lerna run test:e2e",
"bench": "yarn workspaces run bench",
"lint": "lerna run lint",
"format": "prettier --write \"**/*.ts\"",
"watch": "lerna run watch --concurrency 20",
"foam": "yarn workspace @foam/cli foam",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"all-contributors-cli": "^6.16.1",
"husky": "^9.1.7",
"lerna": "^8.2.2",
"vite-tsconfig-paths": "^6.1.1"
},
"engines": {
"node": ">=22"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}