@saptools/sharepoint-excel 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +11 -11
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saptools/sharepoint-excel",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Create, read, and update SharePoint-hosted Excel workbooks through Microsoft Graph with safe local credential profiles",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -25,6 +25,15 @@
25
25
  "engines": {
26
26
  "node": ">=20.0.0"
27
27
  },
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "typecheck": "tsc --noEmit",
31
+ "lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/fake-graph.mjs --max-warnings 0",
32
+ "test:unit": "vitest run --coverage",
33
+ "test:e2e": "playwright test",
34
+ "test:e2e:fake": "playwright test tests/e2e/sharepoint-excel.e2e.ts",
35
+ "check": "pnpm lint && pnpm typecheck && pnpm build && pnpm test:unit && pnpm test:e2e:fake"
36
+ },
28
37
  "keywords": [
29
38
  "sap",
30
39
  "sharepoint",
@@ -57,14 +66,5 @@
57
66
  "@vitest/coverage-v8": "^3.0.0",
58
67
  "tsup": "^8.3.0",
59
68
  "vitest": "^3.0.0"
60
- },
61
- "scripts": {
62
- "build": "tsup",
63
- "typecheck": "tsc --noEmit",
64
- "lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/fake-graph.mjs --max-warnings 0",
65
- "test:unit": "vitest run --coverage",
66
- "test:e2e": "playwright test",
67
- "test:e2e:fake": "playwright test tests/e2e/sharepoint-excel.e2e.ts",
68
- "check": "pnpm lint && pnpm typecheck && pnpm build && pnpm test:unit && pnpm test:e2e:fake"
69
69
  }
70
- }
70
+ }