sn-typescript-util 1.4.0 → 1.4.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/bun.lockb CHANGED
Binary file
@@ -0,0 +1,12 @@
1
+ // @ts-check
2
+
3
+ import eslint from '@eslint/js';
4
+ import tseslint from 'typescript-eslint';
5
+
6
+ export default tseslint.config(
7
+ eslint.configs.recommended,
8
+ ...tseslint.configs.recommended,
9
+ {
10
+ ignores: ['node_modules', 'tmp']
11
+ }
12
+ );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sn-typescript-util",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "A TypeScript utility for ServiceNow developers using VS Code",
5
5
  "bin": {
6
6
  "snts": "bin/snts.js"
@@ -18,25 +18,24 @@
18
18
  },
19
19
  "scripts": {
20
20
  "format": "prettier --write ./bin/*.js ./scripts/*.ts",
21
- "lint": "eslint .",
21
+ "lint": "bun eslint .",
22
22
  "release": "bun ./scripts/utils/release.ts",
23
23
  "watch": "tsc --watch"
24
24
  },
25
25
  "type": "module",
26
26
  "dependencies": {
27
27
  "@clack/prompts": "^0.7.0",
28
- "@types/servicenow": "^10.0.4",
29
28
  "colorette": "^2.0.20",
30
- "commander": "^11.1.0",
29
+ "commander": "^12.0.0",
31
30
  "execa": "^8.0.1",
32
- "typescript": "^5.3.3"
31
+ "typescript": "^5.4.5"
33
32
  },
34
33
  "devDependencies": {
34
+ "@eslint/js": "^9.0.0",
35
35
  "@types/commander": "^2.12.2",
36
- "@typescript-eslint/eslint-plugin": "^6.19.1",
37
- "@typescript-eslint/parser": "^6.19.1",
38
- "bun-types": "^1.0.25",
39
- "eslint": "^8.56.0",
40
- "prettier": "^3.2.4"
36
+ "bun-types": "^1.1.3",
37
+ "eslint": "^9.0.0",
38
+ "prettier": "^3.2.5",
39
+ "typescript-eslint": "^7.7.0"
41
40
  }
42
41
  }
package/.eslintignore DELETED
@@ -1,2 +0,0 @@
1
- node_modules
2
- tmp