-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "vpow",
"version": "0.1.9",
"description": "A distributed PoW server for Vite !",
"main": "dist/index.js",
"scripts": {
"start": "node dist/cli",
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "npm run build && npm start",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeanouina/vpow.git"
},
"author": "JeanOUINA",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/jeanouina/vpow/issues"
},
"homepage": "https://github.com/jeanouina/vpow#readme",
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.13",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"typescript": "^4.5.5"
},
"dependencies": {
"abort-controller": "^3.0.0",
"bongodl": "^1.0.7",
"cross-spawn": "^7.0.3",
"fs-extra": "^10.0.1",
"isomorphic-git": "^1.21.0",
"modernlog": "^1.0.1",
"node-fetch": "^2.6.7",
"ws": "^8.5.0"
},
"bin": {
"vpow": "./dist/cli.js",
"vite-work-server": "./dist/work_server_cli.js"
}
}