|
1 | 1 | { |
2 | 2 | "name": "web-cell", |
3 | | - "version": "3.0.0-rc.8", |
| 3 | + "version": "3.0.0-rc.9", |
4 | 4 | "description": "Web Components engine based on VDOM, JSX, MobX & TypeScript", |
5 | 5 | "keywords": [ |
6 | 6 | "web", |
|
55 | 55 | "jest": "^29.7.0", |
56 | 56 | "jest-environment-jsdom": "^29.7.0", |
57 | 57 | "jsdom": "^24.0.0", |
58 | | - "lint-staged": "^15.2.0", |
| 58 | + "lint-staged": "^15.2.1", |
59 | 59 | "open-cli": "^8.0.0", |
60 | 60 | "parcel": "~2.11.0", |
61 | 61 | "prettier": "^3.2.4", |
| 62 | + "prettier-plugin-sh": "^0.14.0", |
| 63 | + "replace": "^1.2.2", |
62 | 64 | "rimraf": "^5.0.5", |
63 | 65 | "ts-jest": "^29.1.2", |
64 | 66 | "ts-node": "^10.9.2", |
|
73 | 75 | "preview": "npm run clean && cd preview/ && parcel --dist-dir=../docs/preview/ --open", |
74 | 76 | "pack-preview": "rimraf .parcel-cache/ docs/preview/ && cd preview/ && parcel build --public-url=. --dist-dir=../docs/preview/", |
75 | 77 | "pack-dist": "parcel build source/index.ts", |
76 | | - "pack-docs": "typedoc source/", |
| 78 | + "pack-docs": "./pack-docs.sh", |
77 | 79 | "build": "npm run clean && npm run pack-dist && npm run pack-docs && npm run pack-preview", |
78 | 80 | "start": "npm run pack-docs && open-cli docs/index.html", |
79 | 81 | "prepublishOnly": "npm test && npm run build" |
80 | 82 | }, |
81 | 83 | "lint-staged": { |
82 | | - "*.{md,json,yml,js,ts,tsx}": "prettier --write", |
| 84 | + "*.{md,json,yml,js,ts,tsx,sh}": "prettier --write", |
83 | 85 | "*.{js,ts,tsx}": "eslint --fix" |
84 | 86 | }, |
85 | 87 | "prettier": { |
86 | 88 | "singleQuote": true, |
87 | 89 | "trailingComma": "none", |
88 | 90 | "arrowParens": "avoid", |
89 | | - "tabWidth": 4 |
| 91 | + "tabWidth": 4, |
| 92 | + "plugins": [ |
| 93 | + "prettier-plugin-sh" |
| 94 | + ] |
90 | 95 | }, |
91 | 96 | "browserslist": "> 0.5%, last 2 versions, not dead, IE 11", |
92 | 97 | "targets": { |
|
0 commit comments