forked from onflow/freshmint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
{
"name": "@freshmint/core",
"version": "0.6.0",
"description": "The core templates and logic that power Freshmint.",
"contributors": [
"Mackenzie Kieran",
"Peter Siemens <[email protected]>"
],
"license": "Apache-2.0",
"repository": "github:dapperlabs/freshmint",
"keywords": [
"nft",
"blockchain"
],
"engines": {
"node": ">=14.0.0"
},
"main": "./index.ts",
"types": "./index.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./crypto": {
"require": "./dist/crypto/index.js",
"import": "./dist/crypto/index.mjs",
"types": "./dist/crypto/index.d.ts"
},
"./metadata": {
"require": "./dist/metadata/index.js",
"import": "./dist/metadata/index.mjs",
"types": "./dist/metadata/index.d.ts"
}
},
"scripts": {
"test": "jest --runInBand --bail",
"build": "tsup",
"dev": "npm run build -- --watch",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@onflow/fcl": "^1.2.0",
"@onflow/types": "^1.0.3",
"@onflow/util-address": "0.0.0",
"elliptic": "^6.5.4",
"handlebars": "^4.7.7",
"sha3": "^2.1.4"
},
"devDependencies": {
"@onflow/flow-js-testing": "^0.3.0-alpha.16",
"@types/elliptic": "^6.4.14",
"@types/jest": "^28.1.6",
"esbuild-plugin-version-injector": "^1.0.2",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"tsup": "^6.5.0"
}
}