-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.37 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "design-system-monorepo",
"private": true,
"description": "List of components and utilities for building web applications with Nexim's design system powered by Material Design 3.",
"repository": {
"type": "git",
"url": "git+https://github.com/the-nexim/design-system.git"
},
"license": "AGPL-3.0-only",
"author": "S. Amir Mohammad Najafi <[email protected]> (https://www.njfamirm.ir)",
"contributors": [
"Arash Ghardashpoor <[email protected]> (https://www.agpagp.ir)"
],
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "wireit",
"clean": "wireit",
"format": "wireit",
"lint": "wireit",
"lint:es": "wireit",
"publish": "wireit",
"release": "wireit",
"test": "wireit",
"upd": "yarn set version latest && yarn up '*' && yarn up '*' -R && yarn dlx @yarnpkg/sdks vscode && yarn dedupe"
},
"devDependencies": {
"@lerna-lite/changed": "^3.11.0",
"@lerna-lite/cli": "^3.11.0",
"@lerna-lite/diff": "^3.11.0",
"@lerna-lite/exec": "^3.11.0",
"@lerna-lite/publish": "^3.11.0",
"@lerna-lite/run": "^3.11.0",
"@lerna-lite/version": "^3.11.0",
"@nexim/eslint-config": "^1.1.1",
"@nexim/prettier-config": "^1.1.0",
"@nexim/typescript-config": "^2.0.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"ava": "^6.2.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.7.2",
"wireit": "^0.14.9"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0",
"yarn": ">=4.0.0"
},
"wireit": {
"build": {
"command": "lerna run build"
},
"clean": {
"command": "git add -v . && git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*' --exclude=.yarn"
},
"format": {
"dependencies": [
"format:eslint"
]
},
"format:eslint": {
"command": "yarn run lint:es -- --fix",
"dependencies": [
"format:prettier"
]
},
"format:prettier": {
"command": "prettier . --ignore-path .prettierignore --write"
},
"lint": {
"dependencies": [
"lint:es",
"lint:ts"
]
},
"lint:es": {
"command": "eslint . --config .eslintrc.json --ext .ts --ext .js --ext .cjs --ext .mjs --ignore-path .prettierignore --cache-location .eslintcache --cache --color"
},
"lint:ts": {
"command": "tsc --build"
},
"publish": {
"command": "lerna publish from-package"
},
"release": {
"command": "gh workflow list --json id,name,path | jq -r '.[] | select(.path == \".github/workflows/release.yaml\") | .id' | xargs -r gh workflow run",
"dependencies": [
"push"
]
},
"pull": {
"command": "git pull -v"
},
"push": {
"command": "git push -v",
"dependencies": [
"pull"
]
},
"test": {
"command": "lerna run test"
}
}
}