-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.93 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
{
"name": "nanolib-monorepo",
"private": true,
"description": "Necessary library for all ECMAScript (JavaScript/TypeScript) projects.",
"repository": "https://github.com/the-nexim/nanolib",
"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",
"doc": "wireit",
"format": "wireit",
"lint": "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": {
"@eslint/compat": "^1.2.5",
"@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": "workspace:^",
"@nexim/prettier-config": "workspace:^",
"@nexim/typescript-config": "workspace:^",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/node": "^22.12.0",
"ava": "^6.2.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"prettier-plugin-tailwindcss": "^0.6.10",
"typescript": "^5.7.3",
"wireit": "^0.14.10"
},
"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 -- --fix",
"dependencies": [
"format:prettier"
]
},
"format:prettier": {
"command": "prettier . --ignore-path .prettierignore --write"
},
"lint": {
"command": "eslint . --config eslint.config.mjs --cache"
},
"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"
},
"doc": {
"command": "lerna run doc"
}
}
}