-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "scryfall-api",
"version": "4.0.2",
"description": "A Javascript library for https://scryfall.com/docs/api written in Typescript.",
"keywords": [
"magic",
"magic the gathering",
"magic-the-gathering",
"gathering",
"api",
"mtgsdk",
"typescript",
"card",
"cards",
"scryfall",
"scry"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MarioMH8/scryfall-api.git"
},
"homepage": "https://github.com/MarioMH8/scryfall-api",
"bugs": {
"url": "https://github.com/MarioMH8/scryfall-api/issues"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/scryfall-api.js",
"module": "./dist/scryfall-api.js",
"types": "./dist/scryfall-api.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/scryfall-api.d.ts",
"default": "./dist/scryfall-api.js"
},
"require": {
"types": "./dist/scryfall-api.d.cts",
"default": "./dist/scryfall-api.cjs"
},
"default": "./dist/scryfall-api.js"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "tsup",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "2.27.12",
"@hexadrop/eslint-config": "0.0.2",
"@hexadrop/tsconfig": "0.0.5",
"@types/bun": "1.2.2",
"eslint": "9.19.0",
"tsup": "8.3.6",
"typescript": "5.7.3"
}
}