@legendsoflearning/lol-sdk-core 0.0.2 → 0.0.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legendsoflearning/lol-sdk-core",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Core client library for Legends of Learning API",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -70,6 +70,17 @@
70
70
  "dist",
71
71
  "README.md"
72
72
  ],
73
+ "scripts": {
74
+ "build": "pnpm codegen && pnpm fix:generated && tsup",
75
+ "fix:generated": "node scripts/fix-generated.js",
76
+ "dev": "tsup --watch",
77
+ "lint": "eslint src/",
78
+ "typecheck": "tsc --noEmit",
79
+ "test": "vitest run",
80
+ "test:watch": "vitest",
81
+ "clean": "rimraf dist src/generated",
82
+ "codegen": "graphql-codegen --config codegen.ts"
83
+ },
73
84
  "dependencies": {
74
85
  "@apollo/client": "^3.10.0",
75
86
  "@graphql-typed-document-node/core": "^3.2.0",
@@ -106,16 +117,5 @@
106
117
  "type": "git",
107
118
  "url": "git+https://github.com/legends-of-learning/lol-sdk.git",
108
119
  "directory": "packages/core"
109
- },
110
- "scripts": {
111
- "build": "pnpm codegen && pnpm fix:generated && tsup",
112
- "fix:generated": "node scripts/fix-generated.js",
113
- "dev": "tsup --watch",
114
- "lint": "eslint src/",
115
- "typecheck": "tsc --noEmit",
116
- "test": "vitest run",
117
- "test:watch": "vitest",
118
- "clean": "rimraf dist src/generated",
119
- "codegen": "graphql-codegen --config codegen.ts"
120
120
  }
121
- }
121
+ }