-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "react-scrycards",
"version": "1.6.0",
"type": "module",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest --run",
"vitest": "vitest",
"lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings=0 && echo '✅ No linting issues found!'",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm run build && npm publish"
},
"dependencies": {
"@scryfall/api-types": "^1.0.0-alpha.4"
},
"peerDependencies": {
"typescript": "^5.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.16.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"typescript-eslint": "^8.18.0",
"tsup": "^8.3.5",
"vitest": "^2.1.8"
}
}