-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "phantasma-ts",
"version": "0.1.70",
"description": "Javascript SDK for interacting with the PhantasmaChain",
"author": "Phantasma Team <João 'Tek' Novo, Smokinclutch>",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"export": "tsc && browserify index.js -s phantasma > html/phantasma.js",
"test": "tsc && jest",
"tests": "tsc && jest",
"coverage": "jest --coverage",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phantasma-io/phantasma-ts.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/phantasma-io/phantasma-ts/issues"
},
"homepage": "https://github.com/phantasma-io/phantasma-ts#readme",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.1",
"@ledgerhq/hw-transport-webusb": "^6.27.1",
"@types/elliptic": "^6.4.13",
"babel-polyfill": "^6.26.0",
"big-integer": "^1.6.50",
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"browserify": "^17.0.0",
"bs58": "^5.0.0",
"cross-fetch": "^3.1.4",
"crypto-js": "^4.1.1",
"csharp-binary-stream": "^1.0.3",
"elliptic": "^6.5.4",
"ethereumjs-wallet": "^1.0.2",
"tiny-secp256k1": "^2.2.1",
"wif": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@ledgerhq/hw-transport-webusb": "^6.27.1",
"@types/bs58": "^4.0.1",
"@types/crypto-js": "^4.0.2",
"@types/elliptic": "^6.4.13",
"@types/jest": "^29.2.5",
"@types/wif": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.30.0",
"jest": "^29.3.1",
"npm": "^9.3.0",
"prettier": "^3.1.0",
"typescript": "^4.9.4"
}
}