-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
{
"name": "@origyn/mintjs",
"version": "0.1.7",
"description": "JavaScript library for staging and minting Origyn NFTs",
"keywords": [
"mint",
"nft",
"origyn"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "npm run lint && jest --config jestconfig.json",
"version": "npm run format && git add -A src"
},
"dependencies": {
"@dfinity/agent": "^0.15.5",
"@dfinity/auth-client": "^0.15.5",
"@dfinity/authentication": "^0.14.2",
"@dfinity/candid": "^0.15.5",
"@dfinity/identity": "^0.15.5",
"@dfinity/identity-secp256k1": "^0.15.5",
"@dfinity/principal": "^0.15.5",
"@origyn/actor-reference": "^0.1.9",
"@origyn/perpetualos-context": "^0.1.13",
"bip39": "^3.0.4",
"buffer-crc32": "^0.2.13",
"crypto-js": "^4.1.1",
"hdkey": "^2.0.1",
"isomorphic-fetch": "^3.0.0",
"mrmime": "^1.0.1",
"pem-file": "^1.0.1",
"sha256": "^0.2.0",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^28.1.6",
"husky": "^8.0.1",
"jest": "^28.1.3",
"json-bigint": "^1.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORIGYN-SA/mintjs.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*"
],
"author": "ORIGYN Foundation",
"bugs": {
"url": "https://github.com/ORIGYN-SA/mintjs/issues"
},
"homepage": "https://github.com/ORIGYN-SA/mintjs#readme",
"directories": {
"example": "examples",
"lib": "lib"
},
"license": "Apache-2.0"
}