-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
74 lines (74 loc) · 1.66 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
70
71
72
73
74
{
"name": "ts-pegjs",
"version": "4.2.1",
"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",
"pretest": "npm run clean",
"build": "vite build",
"test": "vite build && vitest run",
"lint": "eslint src/ --ext .ts",
"release": "npm test && npm publish"
},
"peerDependencies": {
"peggy": "^3.0.2"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"rimraf": "^5.0.1",
"rollup-plugin-add-shebang": "^0.3.1",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.4"
},
"dependencies": {
"prettier": "^2.8.8",
"ts-morph": "^24.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none"
}
}