forked from ghiscoding/multiple-select-vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 3.22 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
{
"name": "multiple-select-vanilla-root",
"private": true,
"version": "0.0.0",
"author": {
"name": "zhixin wen",
"email": "wenzhixin2010@gmail.com",
"url": "http://wenzhixin.net.cn/"
},
"contributors": [
{
"name": "Ghislain B."
}
],
"homepage": "https://github.com/ghiscoding/multiple-select-vanilla",
"bugs": {
"url": "https://github.com/ghiscoding/multiple-select-vanilla/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/ghiscoding/multiple-select-vanilla"
},
"scripts": {
"clean": "rimraf --glob */dist */tsconfig.tsbuildinfo",
"prebuild": "pnpm run clean && pnpm run prettier:write && pnpm run lint",
"build": "pnpm -r --stream build",
"build:demo": "pnpm -r --stream --filter=\"{demo/**}\" build",
"build:lib": "pnpm -r --stream --filter=\"{lib/**}\" build",
"predev": "pnpm run -r dev:init",
"dev": "run-p dev:watch build:watch --npm-path pnpm",
"dev:watch": "pnpm -r --parallel --stream dev",
"build:watch": "lerna watch --no-bail --file-delimiter=\",\" --glob=\"src/**/*.{ts,scss}\" -- cross-env-shell pnpm run -r --filter $LERNA_PACKAGE_NAME build:watch --files=$LERNA_FILE_CHANGES",
"dev:demo": "pnpm -r --stream --filter=\"{demo/**}\" dev",
"dev:lib": "pnpm -r --stream --filter=\"{lib/**}\" dev",
"prettier:check": "prettier --check **/*.{js,ts,yml,json}",
"prettier:write": "prettier --write **/*.{js,ts,yml,json}",
"ci:lint": "eslint . --ext .ts -c .eslintrc.json --no-eslintrc --ignore-path .gitignore",
"lint": "eslint . --ext .ts -c .eslintrc.json --no-eslintrc --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint",
"preview:version": "lerna version --dry-run",
"preview:publish": "lerna publish from-package --dry-run",
"new-version": "lerna version",
"new-version-1": "lerna version 1.0.2",
"new-publish": "lerna publish from-package",
"preroll-new-release": "echo Please update getting-started lib version before pushing release. ⚠️",
"roll-new-release": "pnpm build && pnpm new-version && pnpm new-publish",
"serve:demo": "pnpm -r --stream --filter=\"{demo/**}\" dev",
"test:e2e": "playwright test --config playwright/playwright.config.ts",
"test:e2e:debug": "playwright test --config playwright/playwright.config.ts --ui --debug",
"test:e2e:ui": "playwright test --config playwright/playwright.config.ts --ui",
"test:report": "playwright show-report"
},
"packageManager": "pnpm@8.11.0",
"devDependencies": {
"@lerna-lite/cli": "^3.0.0",
"@lerna-lite/publish": "^3.0.0",
"@lerna-lite/watch": "^3.0.0",
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"npm-run-all2": "^6.1.1",
"pnpm": "^8.11.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
}
}