-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.02 KB
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
{
"name": "@atomichub/atomicmarket",
"description": "JavaScript/TypeScript SDK for the AtomicMarket NFT marketplace contract on Antelope chains: read sales, auctions, and royalties, and build sale, auction, buyoffer, template-buyoffer, RAM-payment, and v2 royalty actions",
"keywords": [
"atomicmarket",
"atomicassets",
"atomichub",
"wax",
"antelope",
"eosio",
"nft",
"blockchain",
"sdk"
],
"author": {
"name": "AtomicHub",
"url": "https://atomichub.io"
},
"homepage": "https://github.com/atomicassets/atomicmarket-sdk",
"bugs": {
"url": "https://github.com/atomicassets/atomicmarket-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomicassets/atomicmarket-sdk.git"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"version": "2.4.1",
"engines": {
"node": ">=20"
},
"main": "build/index.cjs",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"exports": {
".": {
"import": {
"types": "./build/index.d.mts",
"default": "./build/index.mjs"
},
"require": {
"types": "./build/index.d.ts",
"default": "./build/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"build/"
],
"scripts": {
"build": "tsup",
"check-types": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"lint": "eslint .",
"pretest": "tsup",
"test": "mocha -r ts-node/register/transpile-only test/**/*.test.ts",
"prepare": "tsup",
"prepack": "tsup"
},
"dependencies": {
"@atomichub/atomicassets": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"chai": "^4.4.1",
"eslint": "^9.17.0",
"mocha": "^11.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.59.0"
},
"resolutions": {
"serialize-javascript": "^7.0.5"
}
}