Non-official site for The Life Series Minecraft hardcore survival multiplayer series housing every video www.life-series.online
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

deps: add prettier

Ghustvn d826b264 d6c893aa

+152 -19
+14
.prettierrc
··· 1 + { 2 + "plugins": [ 3 + "prettier-plugin-astro", 4 + "prettier-plugin-tailwindcss" 5 + ], 6 + "overrides": [ 7 + { 8 + "files": "*.astro", 9 + "options": { 10 + "parser": "astro" 11 + } 12 + } 13 + ] 14 + }
+25 -19
package.json
··· 1 1 { 2 - "name": "life_series", 3 - "type": "module", 4 - "version": "0.0.1", 5 - "scripts": { 6 - "dev": "astro dev", 7 - "build": "astro build", 8 - "preview": "astro preview", 9 - "astro": "astro" 10 - }, 11 - "dependencies": { 12 - "@astro-community/astro-embed-youtube": "^0.5.6", 13 - "@tailwindcss/vite": "^4.1.11", 14 - "astro": "^5.11.0", 15 - "astro-capo": "^0.0.1", 16 - "sharp": "^0.34.3", 17 - "tailwindcss": "^4.1.11", 18 - "typescript": "^5.8.3" 19 - } 20 - } 2 + "name": "life_series", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "scripts": { 6 + "dev": "astro dev", 7 + "build": "astro build", 8 + "preview": "astro preview", 9 + "astro": "astro", 10 + "format": "prettier . --write" 11 + }, 12 + "dependencies": { 13 + "@astro-community/astro-embed-youtube": "^0.5.6", 14 + "@tailwindcss/vite": "^4.1.11", 15 + "astro": "^5.11.0", 16 + "astro-capo": "^0.0.1", 17 + "sharp": "^0.34.3", 18 + "tailwindcss": "^4.1.11", 19 + "typescript": "^5.8.3" 20 + }, 21 + "devDependencies": { 22 + "prettier": "^3.6.2", 23 + "prettier-plugin-astro": "^0.14.1", 24 + "prettier-plugin-tailwindcss": "^0.6.14" 25 + } 26 + }
+113
pnpm-lock.yaml
··· 29 29 typescript: 30 30 specifier: ^5.8.3 31 31 version: 5.8.3 32 + devDependencies: 33 + prettier: 34 + specifier: ^3.6.2 35 + version: 3.6.2 36 + prettier-plugin-astro: 37 + specifier: ^0.14.1 38 + version: 0.14.1 39 + prettier-plugin-tailwindcss: 40 + specifier: ^0.6.14 41 + version: 0.6.14(prettier-plugin-astro@0.14.1)(prettier@3.6.2) 32 42 33 43 packages: 34 44 ··· 1413 1423 resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1414 1424 engines: {node: ^10 || ^12 || >=14} 1415 1425 1426 + prettier-plugin-astro@0.14.1: 1427 + resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} 1428 + engines: {node: ^14.15.0 || >=16.0.0} 1429 + 1430 + prettier-plugin-tailwindcss@0.6.14: 1431 + resolution: {integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==} 1432 + engines: {node: '>=14.21.3'} 1433 + peerDependencies: 1434 + '@ianvs/prettier-plugin-sort-imports': '*' 1435 + '@prettier/plugin-hermes': '*' 1436 + '@prettier/plugin-oxc': '*' 1437 + '@prettier/plugin-pug': '*' 1438 + '@shopify/prettier-plugin-liquid': '*' 1439 + '@trivago/prettier-plugin-sort-imports': '*' 1440 + '@zackad/prettier-plugin-twig': '*' 1441 + prettier: ^3.0 1442 + prettier-plugin-astro: '*' 1443 + prettier-plugin-css-order: '*' 1444 + prettier-plugin-import-sort: '*' 1445 + prettier-plugin-jsdoc: '*' 1446 + prettier-plugin-marko: '*' 1447 + prettier-plugin-multiline-arrays: '*' 1448 + prettier-plugin-organize-attributes: '*' 1449 + prettier-plugin-organize-imports: '*' 1450 + prettier-plugin-sort-imports: '*' 1451 + prettier-plugin-style-order: '*' 1452 + prettier-plugin-svelte: '*' 1453 + peerDependenciesMeta: 1454 + '@ianvs/prettier-plugin-sort-imports': 1455 + optional: true 1456 + '@prettier/plugin-hermes': 1457 + optional: true 1458 + '@prettier/plugin-oxc': 1459 + optional: true 1460 + '@prettier/plugin-pug': 1461 + optional: true 1462 + '@shopify/prettier-plugin-liquid': 1463 + optional: true 1464 + '@trivago/prettier-plugin-sort-imports': 1465 + optional: true 1466 + '@zackad/prettier-plugin-twig': 1467 + optional: true 1468 + prettier-plugin-astro: 1469 + optional: true 1470 + prettier-plugin-css-order: 1471 + optional: true 1472 + prettier-plugin-import-sort: 1473 + optional: true 1474 + prettier-plugin-jsdoc: 1475 + optional: true 1476 + prettier-plugin-marko: 1477 + optional: true 1478 + prettier-plugin-multiline-arrays: 1479 + optional: true 1480 + prettier-plugin-organize-attributes: 1481 + optional: true 1482 + prettier-plugin-organize-imports: 1483 + optional: true 1484 + prettier-plugin-sort-imports: 1485 + optional: true 1486 + prettier-plugin-style-order: 1487 + optional: true 1488 + prettier-plugin-svelte: 1489 + optional: true 1490 + 1491 + prettier@3.6.2: 1492 + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 1493 + engines: {node: '>=14'} 1494 + hasBin: true 1495 + 1416 1496 prismjs@1.30.0: 1417 1497 resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 1418 1498 engines: {node: '>=6'} ··· 1491 1571 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1492 1572 hasBin: true 1493 1573 1574 + s.color@0.0.15: 1575 + resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} 1576 + 1577 + sass-formatter@0.7.9: 1578 + resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} 1579 + 1494 1580 semver@7.7.2: 1495 1581 resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 1496 1582 engines: {node: '>=10'} ··· 1542 1628 strip-ansi@7.1.0: 1543 1629 resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1544 1630 engines: {node: '>=12'} 1631 + 1632 + suf-log@2.5.3: 1633 + resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} 1545 1634 1546 1635 tailwindcss@4.1.11: 1547 1636 resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==} ··· 3313 3402 picocolors: 1.1.1 3314 3403 source-map-js: 1.2.1 3315 3404 3405 + prettier-plugin-astro@0.14.1: 3406 + dependencies: 3407 + '@astrojs/compiler': 2.12.2 3408 + prettier: 3.6.2 3409 + sass-formatter: 0.7.9 3410 + 3411 + prettier-plugin-tailwindcss@0.6.14(prettier-plugin-astro@0.14.1)(prettier@3.6.2): 3412 + dependencies: 3413 + prettier: 3.6.2 3414 + optionalDependencies: 3415 + prettier-plugin-astro: 0.14.1 3416 + 3417 + prettier@3.6.2: {} 3418 + 3316 3419 prismjs@1.30.0: {} 3317 3420 3318 3421 prompts@2.4.2: ··· 3457 3560 '@rollup/rollup-win32-x64-msvc': 4.44.2 3458 3561 fsevents: 2.3.3 3459 3562 3563 + s.color@0.0.15: {} 3564 + 3565 + sass-formatter@0.7.9: 3566 + dependencies: 3567 + suf-log: 2.5.3 3568 + 3460 3569 semver@7.7.2: {} 3461 3570 3462 3571 sharp@0.33.5: ··· 3562 3671 strip-ansi@7.1.0: 3563 3672 dependencies: 3564 3673 ansi-regex: 6.1.0 3674 + 3675 + suf-log@2.5.3: 3676 + dependencies: 3677 + s.color: 0.0.15 3565 3678 3566 3679 tailwindcss@4.1.11: {} 3567 3680