-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.23 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
{
"name": "alwatr-icon",
"description": "Alwatr icon is a collection of packages for using icon in the anywhere.",
"repository": "https://github.com/Alwatr/icon",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=18.16.0",
"yarn": ">=4.0.0"
},
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"l": "yarn run lint",
"b": "yarn run build",
"br": "run-s build build:r",
"c": "yarn run clean",
"cb": "run-s clean build",
"s": "run-s build serve",
"w": "yarn run watch",
"f": "yarn run format",
"fl": "yarn run format:eslint",
"fp": "yarn run format:prettier",
"rl": "run-s pull clean build release",
"upd": "yarn set version latest; yarn up '*'; yarn up '*' -R; yarn dlx @yarnpkg/sdks vscode;",
"lint": "run-s 'lint:*'",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts",
"build": "run-s build:ts build:r",
"build:ts": "tsc --build",
"build:r": "lerna run build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "yarn run lint:ts --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"clean": "git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*' --exclude=.yarn",
"serve": "wds",
"watch": "run-p 'watch:*' serve",
"watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
"pull": "git pull",
"release": "lerna version",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@lerna-lite/changed": "^3.1.0",
"@lerna-lite/cli": "^3.1.0",
"@lerna-lite/diff": "^3.1.0",
"@lerna-lite/exec": "^3.1.0",
"@lerna-lite/publish": "^3.1.0",
"@lerna-lite/run": "^3.1.0",
"@lerna-lite/version": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@web/dev-server": "^0.4.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"ts-lit-plugin": "^2.0.1",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}