@connectedxm/admin 1.0.25 → 1.1.0

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": "@connectedxm/admin",
3
- "version": "1.0.25",
3
+ "version": "1.1.0",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {
@@ -13,13 +13,14 @@
13
13
  "types": "dist/index.d.ts",
14
14
  "scripts": {
15
15
  "dev": "vitest",
16
- "lint": "yarn tsc && eslint src/**/*.ts",
16
+ "lint": "npm run tsc && eslint src/**/*.ts",
17
17
  "test": "vitest run",
18
18
  "build": "tsup src/index.ts --format cjs,esm --dts",
19
- "release": "yarn run lint && yarn run test && yarn run build",
20
- "local": "yarn run release && yarn pack",
19
+ "release": "npm run lint && npm run test && npm run build",
20
+ "local": "npm run release && npm pack",
21
21
  "document": "typedoc --plugin typedoc-material-theme",
22
- "exports": "tsx scripts/addExports.ts"
22
+ "exports": "tsx scripts/addExports.ts",
23
+ "tsc": "tsc"
23
24
  },
24
25
  "dependencies": {
25
26
  "axios": "^1.6.5",
@@ -50,5 +51,8 @@
50
51
  "typedoc-theme-hierarchy": "^4.0.0",
51
52
  "typescript": "^5.4.2",
52
53
  "vitest": "^1.3.1"
54
+ },
55
+ "optionalDependencies": {
56
+ "@rollup/rollup-linux-x64-gnu": "4.6.1"
53
57
  }
54
58
  }