-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathpackage.json
112 lines (112 loc) · 2.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@stacks/cli",
"version": "7.0.4",
"description": "Stacks command line tool",
"license": "MIT",
"author": "Hiro Systems PBC (https://hiro.so)",
"contributors": [
"Ken Liao <[email protected]>"
],
"homepage": "https://hiro.so/stacks-js",
"scripts": {
"build": "npm run clean && npm run build:cjs",
"build:cjs": "tsc -b tsconfig.build.json",
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
"prepublishOnly": "npm run test && NODE_ENV=production npm run build",
"start": "tsc -b tsconfig.build.json --watch --verbose",
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"typecheck": "tsc --noEmit",
"typecheck:watch": "npm run typecheck -- --watch"
},
"dependencies": {
"@scure/bip32": "1.1.3",
"@scure/bip39": "1.1.0",
"@stacks/auth": "^7.0.4",
"@stacks/blockchain-api-client": "4.0.1",
"@stacks/bns": "^7.0.4",
"@stacks/common": "^7.0.2",
"@stacks/encryption": "^7.0.4",
"@stacks/network": "^7.0.2",
"@stacks/stacking": "^7.0.4",
"@stacks/storage": "^7.0.4",
"@stacks/transactions": "^7.0.4",
"@stacks/wallet-sdk": "^7.0.4",
"ajv": "^6.12.6",
"bip32": "^2.0.6",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"blockstack": "^19.2.2",
"c32check": "^2.0.0",
"cors": "^2.8.4",
"cross-fetch": "^3.1.5",
"express": "^4.17.1",
"express-winston": "^3.1.0",
"inquirer": "^7.1.0",
"jsontokens": "^4.0.1",
"node-fetch": "^2.6.0",
"ripemd160": "^2.0.1",
"wif": "^2.0.6",
"winston": "^3.2.1",
"zone-file": "^2.0.0-beta.3"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-winston": "^3.0.1",
"@types/inquirer": "^6.5.0",
"@types/node": "^18.0.4",
"@types/node-fetch": "^2.5.0",
"@types/ripemd160": "^2.0.0",
"@types/wif": "^2.0.2",
"rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"auth",
"authentication",
"authorization",
"bitcoin",
"bitcoin auth",
"bitcoin authentication",
"bitcoin login",
"blockchain",
"blockchain auth",
"blockchain authentication",
"blockchain id",
"blockchain login",
"blockchainid",
"blockstack",
"blockstack auth",
"command",
"crypto",
"cryptography",
"ethereum",
"id",
"identity",
"login",
"profile",
"signin",
"sso",
"stacks",
"token"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hirosystems/stacks.js.git"
},
"bugs": {
"url": "https://github.com/blockstack/blockstack.js/issues"
},
"bin": {
"stacks": "./bin.js",
"stx": "./bin.js"
}
}