-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
26 lines (26 loc) · 966 Bytes
/
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
{
"name": "heng-protocol",
"version": "0.0.7",
"license": "MIT",
"author": {
"name": "ThinkSpirit Developers"
},
"scripts": {
"build": "tsc",
"format": "prettier --write external-protocol/*.ts internal-protocol/*.ts index.ts",
"check:format": "prettier --check external-protocol/*.ts internal-protocol/*.ts index.ts",
"lint": "eslint external-protocol internal-protocol index.ts --fix",
"check:lint": "eslint external-protocol internal-protocol index.ts -f codeframe",
"prepack": "npm install typescript && npx tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}