-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"name": "@rightcapital/phpdoc-parser",
"version": "0.4.97",
"description": "TypeScript version of PHPDoc parser with support for intersection types and generics",
"keywords": [
"PHP",
"PHPDoc",
"PHPDoc Parser",
"Parser",
"TypeScript",
"PHPStan",
"AST",
"Lexer"
],
"repository": "https://github.com/RightCapitalHQ/phpdoc-parser",
"license": "MIT",
"author": "RightCapital Ecosystem team <[email protected]>",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
"change": "beachball change --no-commit",
"check": "beachball check",
"clean": "tsc --build --clean ./tsconfig.build.json",
"commit": "cz",
"eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
"eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
"preinstall": "npx only-allow pnpm",
"test": "vitest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@types/node": "22.10.5",
"lodash": "4.17.21",
"typescript": "5.7.3"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@rightcapital/eslint-config": "40.0.0",
"@rightcapital/prettier-config": "7.1.10",
"@types/lodash": "4.17.13",
"beachball": "2.51.0",
"commitizen": "4.3.1",
"eslint": "9.13.0",
"husky": "9.1.7",
"inquirer": "12.2.0",
"prettier": "3.4.2",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.x",
"pnpm": ">=8.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}