-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 984 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
27
28
29
30
31
32
33
{
"name": "statikvc",
"version": "1.1.2-alpha",
"description": "An IPFS based version control system with static file hosting features. Basic functions like repo initiation, staging, committing, and logging have been implemented. (Under active development)",
"exports": "./dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"statik": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpiderNitt/statik"
},
"keywords": ["version-control","ipfs","p2p","web3","filestorage"],
"author": "Spider R&D",
"license": "ISC",
"dependencies": {
"commander": "^11.0.0",
"figlet": "^1.6.0",
"ipfs-http-client": "^52.0.4-rc.4"
},
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/node": "^20.8.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"type": "module"
}