@marqeta/ux-toolkit-sdk-javascript 0.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@marqeta/ux-toolkit-sdk-javascript",
3
+ "version": "0.24.1",
4
+ "main": "dist/index.js",
5
+ "module": "dist/index.mjs",
6
+ "types": "dist/index.d.ts",
7
+ "license": "SEE LICENSE IN LICENSE",
8
+ "scripts": {
9
+ "build:prod": "NODE_ENV=production tsup src/index.ts",
10
+ "build:qa": "NODE_ENV=qa tsup src/index.ts",
11
+ "build:dev": "NODE_ENV=development tsup src/index.ts",
12
+ "build:watch": "yarn build:dev",
13
+ "format": "prettier --write .",
14
+ "lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
15
+ "test": "NODE_OPTIONS=--max-old-space-size=6144 DOTENV_CONFIG_PATH=./.env.development jest",
16
+ "test:ci": "yarn test --coverage",
17
+ "typecheck": "tsc --project tsconfig.json --noEmit"
18
+ },
19
+ "dependencies": {
20
+ "@abraham/reflection": "^0.12.0",
21
+ "@react-native-async-storage/async-storage": "^2.0.0",
22
+ "apollo-boost": "^0.4.9",
23
+ "graphql": "^15.8.0",
24
+ "graphql-tag": "^2.12.6",
25
+ "inversify": "^6.0.2",
26
+ "ts-node": "^10.9.1"
27
+ },
28
+ "devDependencies": {
29
+ "@swc/core": "^1.3.106",
30
+ "@testing-library/jest-dom": "^6.1.4",
31
+ "@types/jest": "^29.5.7",
32
+ "@types/node": "^20.8.10",
33
+ "@typescript-eslint/eslint-plugin": "^7.6.0",
34
+ "@typescript-eslint/parser": "^7.6.0",
35
+ "dotenv": "^16.3.2",
36
+ "eslint": "^9.0.0",
37
+ "eslint-config-prettier": "^9.1.0",
38
+ "eslint-plugin-prettier": "^5.1.3",
39
+ "globals": "^15.0.0",
40
+ "jest": "^29.7.0",
41
+ "jest-environment-jsdom": "^29.7.0",
42
+ "lint-staged": "^15.2.0",
43
+ "msw": "^2.0.14",
44
+ "prettier": "^3.1.1",
45
+ "ts-jest": "^29.1.1",
46
+ "tsc-files": "^1.1.4",
47
+ "tsup": "^8.0.1",
48
+ "typescript": "^5.2.2",
49
+ "whatwg-fetch": "^3.6.19"
50
+ },
51
+ "lint-staged": {
52
+ "**/*.{js}": [
53
+ "yarn dlx prettier --write",
54
+ "yarn dlx eslint --fix"
55
+ ],
56
+ "**/*.{ts}": [
57
+ "yarn dlx prettier --write",
58
+ "yarn dlx eslint --fix",
59
+ "tsc-files --noEmit"
60
+ ]
61
+ }
62
+ }