-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "@xahau/hooks-cli",
"version": "2.0.6",
"description": "",
"main": "dist/npm/src/index.js",
"types": "dist/npm/src/index.d.ts",
"files": [
"dist/**/*",
"src"
],
"bin": {
"hooks-cli": "./bin/cli.js",
"js2qjsc-cli": "./bin/js2qjsc-cli.js",
"c2wasm-cli": "./bin/c2wasm-cli.js"
},
"scripts": {
"build": "tsc && cp -r src/init dist/npm/src",
"test:integration": "jest --config=jest.config.integration.js",
"lint": "eslint ./src/**/* --ext .ts",
"format": "npx prettier --write ./src"
},
"author": {
"name": "Denis Angell",
"url": "https://github.com/Transia-RnD/hooks-cli"
},
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"base64-js": "^1.5.1",
"commander": "^10.0.1",
"dotenv": "^16.1.4",
"esbuild": "^0.21.4",
"pako": "^2.1.0",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/chai": "^4.3.4",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/pako": "^2.0.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}