-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
46
47
48
49
50
51
52
53
{
"name": "ltd-toolbox",
"version": "0.0.0",
"private": true,
"description": "Set of tools that help with Design systems",
"main": "index.js",
"scripts": {
"build": "yarn workspaces run build",
"release:canary": "yarn lerna publish --canary",
"release:pre": "yarn lerna publish --conventional-prerelease",
"release": "yarn lerna publish --conventional-graduate",
"pkg:update": "yarn ",
"postinstall": "yarn husky install && yarn update",
"test": "yarn wsrun -l --exclude-missing test --run",
"codecheck": "yarn wsrun -l --exclude-missing codecheck"
},
"workspaces": [
"packages/*"
],
"keywords": [
"design system",
"figma",
"parser",
"styles",
"text",
"LTD",
"ltd",
"libraries",
"tokens",
"documentation"
],
"author": {
"name": "Jakub Hajduk",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"lerna": "^7.4.1",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4"
},
"packageManager": "[email protected]",
"dependencies": {
"consola": "^3.2.3"
}
}