forked from xorgram/xor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "@xorgram/xor",
"version": "0.0.3",
"license": "LGPL-3.0",
"bin": "bin/index.js",
"main": "dist/index.js",
"authors": [
{
"name": "Roj",
"email": "[email protected]"
},
{
"name": "Arnab Paryali",
"email": "[email protected]"
}
],
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && tsc",
"fix": "npm run lint -- --fix",
"test": "npm run build && node bin",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts --max-warnings=0",
"preversion": "echo \"export const version = \\\"\"$npm_new_version\"\\\"\" > src/constants.ts"
},
"dependencies": {
"big-integer": "^1.6.51",
"dotenv": "^16.0.0",
"envalid": "^7.2.2",
"html-escape": "^2.0.0",
"telegram": "^2.5.0",
"vm2": "^3.9.7"
},
"devDependencies": {
"@types/html-escape": "^2.0.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run format"
]
}
}