-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.87 KB
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
77
78
{
"name": "ts-pegjs",
"version": "4.2.2",
"description": "TS target for peggy parser generator",
"author": "Pedro J. Molina",
"license": "MIT",
"bugs": {
"url": "https://github.com/metadevpro/ts-pegjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/metadevpro/ts-pegjs.git"
},
"keywords": [
"peggy",
"pegjs",
"plugin",
"ts",
"typescript",
"parser",
"generator"
],
"bin": {
"tspegjs": "dist/cli.mjs"
},
"exports": {
"import": "./dist/tspegjs.mjs",
"require": "./dist/tspegjs.js"
},
"types": "./dist/tspegjs.d.ts",
"files": [
"LICENSE",
"package.json",
"dist/**/*"
],
"scripts": {
"clean": "rimraf --glob output/*.ts output/*.js",
"format": "prettier . --write",
"format:check": "prettier . --check",
"pretest": "node -e \"require('fs').mkdirSync('output', { recursive: true })\" && npm run clean",
"build": "vite build",
"test": "vite build && vitest run",
"lint": "eslint src/",
"ci": "npm run format:check && npm run lint && npm test",
"release": "npm run ci && npm publish"
},
"peerDependencies": {
"peggy": "^3.0.2"
},
"dependencies": {
"prettier": "^3.9.6",
"synckit": "^0.11.13",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.10.0",
"rimraf": "^6.1.3",
"rollup-plugin-add-shebang": "^0.3.1",
"typescript": "^6.0.0",
"vite": "^8.2.1",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none"
}
}