@whenessel/seql-js 1.0.2 → 1.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.
package/package.json CHANGED
@@ -1,15 +1,27 @@
1
1
  {
2
2
  "name": "@whenessel/seql-js",
3
- "version": "1.0.2",
3
+ "version": "1.1.1",
4
4
  "description": "Semantic Element Query Language JS Implementation",
5
+ "author": "Artem Demidenko <ar.demidenko@gmail.com>",
5
6
  "scripts": {
6
7
  "types:check": "tsc --noEmit",
7
- "build": "vite build",
8
+ "build": "yarn types:check && vite build",
8
9
  "build:watch": "vite build --watch",
9
- "test": "vitest run",
10
- "test:watch": "vitest watch",
11
- "test:coverage": "vitest run --coverage",
12
- "extension:prepare": "yarn build && mkdir -p extensions/chrome/lib && cp dist/seql-js.umd.cjs extensions/chrome/lib/"
10
+ "test": "vitest run --project unit --project integration",
11
+ "test:watch": "vitest --project unit --project integration",
12
+ "test:coverage": "vitest run --project unit --project integration --coverage",
13
+ "test:unit": "vitest run --config vitest.config.unit.ts",
14
+ "test:unit:coverage": "vitest run --config vitest.config.unit.ts --coverage",
15
+ "test:integration": "vitest run --config vitest.config.integration.ts",
16
+ "test:integration:coverage": "vitest run --config vitest.config.integration.ts --coverage",
17
+ "test:benchmark": "vitest run --config vitest.config.benchmark.ts",
18
+ "extension:prepare": "yarn build && mkdir -p extensions/chrome/lib && cp dist/seql-js.umd.cjs extensions/chrome/lib/",
19
+ "format:check": "prettier --check .",
20
+ "format:fix": "prettier --write .",
21
+ "lint:check": "eslint .",
22
+ "lint:fix": "eslint . --fix",
23
+ "md:check": "markdownlint-cli2",
24
+ "md:fix": "markdownlint-cli2 --fix"
13
25
  },
14
26
  "type": "module",
15
27
  "repository": {
@@ -45,12 +57,21 @@
45
57
  },
46
58
  "homepage": "https://github.com/whenessel/seql-js/issues#readme",
47
59
  "devDependencies": {
60
+ "@eslint/js": "^9.17.0",
48
61
  "@types/jsdom": "^27.0.0",
49
62
  "@vitest/coverage-v8": "^4.0.15",
50
63
  "@whenessel/jsdom-extended": "^0.1.2",
64
+ "eslint": "^9.17.0",
65
+ "eslint-config-prettier": "^10.1.8",
66
+ "eslint-plugin-markdownlint": "^0.3.0",
67
+ "eslint-plugin-vitest-globals": "^1.5.0",
51
68
  "jsdom": "^27.2.0",
69
+ "markdownlint": "^0.35.0",
70
+ "markdownlint-cli2": "^0.15.0",
71
+ "prettier": "^3.7.4",
52
72
  "tsup": "^8.3.5",
53
73
  "typescript": "^5.9.3",
74
+ "typescript-eslint": "^8.18.2",
54
75
  "vite": "^7.2.2",
55
76
  "vite-plugin-dts": "^4.5.4",
56
77
  "vitest": "^4.0.15"