forked from muxinc/elements
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.51 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
44
45
{
"name": "@imgix/ix-elements",
"engines": {
"node": "^14.17.0 || ^16.13.0 || ^18.12.0",
"npm": "^7.17.0 || ^8.1.0"
},
"version": "0.1.0",
"description": "Custom elements for working with media in the browser that work anywhere",
"main": "index.js",
"repository": "https://github.com/imgix/ix-elements",
"author": "imgix, Inc.",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"turbo": "^1.4.6"
},
"workspaces": [
"packages/*",
"examples/*",
"scripts/*",
"shared/*"
],
"scripts": {
"format": "prettier --write .",
"clean": "turbo run clean",
"lint": "turbo run lint --filter '!./examples/*'",
"test": "turbo run test --filter '!./examples/*'",
"dev": "turbo run dev --filter '!./examples/*'",
"build:packages": "turbo run build --filter '!./examples/*'",
"build": "turbo run build",
"i18n": "turbo run i18n",
"prepare": "husky install",
"deploy": "lerna publish from-package --no-private --no-verify-access --conventional-commits",
"deploy:canary": "lerna run deploy:canary --npm-client=npm --scope @imgix/*",
"version:update": "lerna version --exact --no-private --conventional-commits",
"create-release-notes": "lerna run create-release-notes --scope @imgix/*",
"publish-release": "lerna run publish-release --scope @imgix/* --"
}
}