-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 823 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 823 Bytes
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
{
"name": "products-sdk",
"version": "1.0.0",
"description": "The collection of SDKs for LiveChat products to help developers with building their integrations",
"main": "index.js",
"repository": "git@github.com:livechat/products-sdk.git",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build lint test && changeset publish"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "2.7.0",
"lint-staged": "^15.2.2",
"turbo": "^1.3.4"
},
"dependencies": {
"@changesets/cli": "^2.25.2"
}
}