|
1 | 1 | { |
2 | 2 | "name": "@rightcapital/phpdoc-parser", |
3 | 3 | "version": "0.4.72", |
| 4 | + "description": "TypeScript version of PHPDoc parser with support for intersection types and generics", |
4 | 5 | "keywords": [ |
5 | 6 | "PHP", |
6 | 7 | "PHPDoc", |
|
11 | 12 | "AST", |
12 | 13 | "Lexer" |
13 | 14 | ], |
14 | | - "description": "TypeScript version of PHPDoc parser with support for intersection types and generics", |
15 | | - "main": "dist/index.js", |
16 | 15 | "repository": "https://github.com/RightCapitalHQ/phpdoc-parser", |
17 | | - "author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>", |
18 | 16 | "license": "MIT", |
19 | | - "packageManager": "pnpm@9.12.1", |
20 | | - "publishConfig": { |
21 | | - "registry": "https://registry.npmjs.org" |
22 | | - }, |
23 | | - "engines": { |
24 | | - "node": ">=16.x", |
25 | | - "pnpm": ">=8.x" |
26 | | - }, |
| 17 | + "author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>", |
| 18 | + "main": "dist/index.js", |
27 | 19 | "files": [ |
28 | 20 | "dist" |
29 | 21 | ], |
| 22 | + "scripts": { |
| 23 | + "build": "pnpm run clean && tsc --project ./tsconfig.build.json", |
| 24 | + "change": "beachball change --no-commit", |
| 25 | + "check": "beachball check", |
| 26 | + "clean": "tsc --build --clean ./tsconfig.build.json", |
| 27 | + "commit": "cz", |
| 28 | + "eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'", |
| 29 | + "eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'", |
| 30 | + "preinstall": "npx only-allow pnpm", |
| 31 | + "test": "vitest" |
| 32 | + }, |
| 33 | + "config": { |
| 34 | + "commitizen": { |
| 35 | + "path": "@commitlint/cz-commitlint" |
| 36 | + } |
| 37 | + }, |
| 38 | + "dependencies": { |
| 39 | + "@types/node": "20.16.11", |
| 40 | + "lodash": "4.17.21", |
| 41 | + "typescript": "5.6.3" |
| 42 | + }, |
30 | 43 | "devDependencies": { |
31 | 44 | "@babel/core": "7.25.8", |
32 | 45 | "@babel/preset-env": "7.25.8", |
33 | 46 | "@babel/preset-typescript": "7.25.7", |
34 | 47 | "@commitlint/cli": "19.5.0", |
35 | 48 | "@commitlint/config-conventional": "19.5.0", |
36 | 49 | "@commitlint/cz-commitlint": "19.5.0", |
37 | | - "@rightcapital/eslint-config-javascript": "20.1.2", |
38 | | - "@rightcapital/eslint-config-typescript": "20.1.2", |
39 | | - "@rightcapital/prettier-config": "6.0.16", |
| 50 | + "@rightcapital/eslint-config-javascript": "36.3.0", |
| 51 | + "@rightcapital/eslint-config-typescript": "36.3.0", |
| 52 | + "@rightcapital/prettier-config": "7.1.7", |
40 | 53 | "@types/lodash": "4.17.10", |
41 | 54 | "beachball": "2.47.1", |
42 | 55 | "commitizen": "4.3.1", |
43 | 56 | "eslint": "8.57.1", |
44 | 57 | "husky": "9.1.6", |
45 | | - "inquirer": "9.3.7", |
| 58 | + "inquirer": "12.0.0", |
46 | 59 | "prettier": "3.3.3", |
47 | | - "vitest": "1.6.0" |
| 60 | + "vitest": "2.1.2" |
48 | 61 | }, |
49 | | - "dependencies": { |
50 | | - "@types/node": "20.16.11", |
51 | | - "lodash": "4.17.21", |
52 | | - "typescript": "5.6.3" |
53 | | - }, |
54 | | - "scripts": { |
55 | | - "commit": "cz", |
56 | | - "clean": "tsc --build --clean ./tsconfig.build.json", |
57 | | - "change": "beachball change --no-commit", |
58 | | - "check": "beachball check", |
59 | | - "build": "pnpm run clean && tsc --project ./tsconfig.build.json", |
60 | | - "preinstall": "npx only-allow pnpm", |
61 | | - "prepare": "husky install", |
62 | | - "eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'", |
63 | | - "eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'", |
64 | | - "test": "vitest" |
| 62 | + "packageManager": "pnpm@9.12.1", |
| 63 | + "engines": { |
| 64 | + "node": ">=16.x", |
| 65 | + "pnpm": ">=8.x" |
65 | 66 | }, |
66 | | - "config": { |
67 | | - "commitizen": { |
68 | | - "path": "@commitlint/cz-commitlint" |
69 | | - } |
| 67 | + "publishConfig": { |
| 68 | + "registry": "https://registry.npmjs.org" |
70 | 69 | } |
71 | 70 | } |
0 commit comments