-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "figma-chat",
"version": "5.0.1",
"description": "",
"private": true,
"scripts": {
"build": "yarn build:plugin && yarn build:web && yarn build:server",
"start:plugin": "yarn workspace plugin start",
"start:web": "yarn workspace web start",
"start:server": "yarn workspace server dev",
"build:plugin": "yarn workspace plugin build",
"build:web": "yarn workspace web build",
"build:server": "yarn workspace server build",
"lint": "yarn workspace plugin lint && yarn workspace web lint && yarn workspace shared lint && yarn workspace server lint",
"version": "npx conventional-changelog-cli -p karma -i CHANGELOG.md -s -r 0 && git add ."
},
"author": "Philip Stapelfeldt <me@ph1p.dev>",
"repository": {
"type": "git",
"url": "https://github.com/ph1p/figma-chat.git"
},
"bugs": {
"url": "https://github.com/ph1p/figma-chat/issues"
},
"prettier": {
"singleQuote": true
},
"license": "ISC",
"workspaces": [
"packages/*"
],
"packageManager": "yarn@3.2.1"
}