-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "hero-plugins",
"version": "0.0.1",
"exports": {
"./lib/*": "./lib/*.js"
},
"description": "monorepo for hero-plugins maintained by Otainsight",
"repository": "https://github.com/OTA-Insight/hero-plugins",
"author": "OTA Insight Ltd.",
"contributors": [
"brecht <brecht.stamper@gmail.com>"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"rm": "rimraf dist",
"compile": "tsc -b",
"build": "yarn rm && yarn compile",
"watch": "yarn build && tsc -b -w",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"packageManager": "yarn@3.3.0",
"dependencies": {
"@ulixee/hero": "~2.0.0-alpha.23",
"@ulixee/hero-core": "~2.0.0-alpha.23",
"@ulixee/hero-interfaces": "~2.0.0-alpha.23",
"@ulixee/hero-plugin-utils": "~2.0.0-alpha.23",
"@ulixee/unblocked-specification": "~2.0.0-alpha.23"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.6",
"rimraf": "^4.4.0",
"typescript": "4.9.3"
}
}