@opengis/filter 0.1.3 → 0.1.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,18 +1,56 @@
1
1
  {
2
2
  "name": "@opengis/filter",
3
- "version": "0.1.3",
4
- "description": "A flexible and extensible filter component system for Vue 3. Ideal for building customizable filter UIs with checkbox, radio, or custom slot fields.",
5
- "private": false,
3
+ "version": "0.1.4",
6
4
  "type": "module",
7
- "main": "filter.js",
5
+ "main": "dist/filter.js",
6
+ "private": false,
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "description": "A flexible and extensible filter component system for Vue 3. Ideal for building customizable filter UIs with checkbox, radio, or custom slot fields.",
11
+ "license": "MIT",
8
12
  "homepage": "https://filter.opengis.info/",
13
+ "author": {
14
+ "name": "OpenGIS",
15
+ "url": "https://opengis.info/"
16
+ },
9
17
  "keywords": [
10
18
  "filter",
11
19
  "vue3"
12
20
  ],
13
- "author": {
14
- "name": "OpenGIS",
15
- "url": "https://opengis.info/"
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git://github.com/opengisinfo/filter"
24
+ },
25
+ "scripts": {
26
+ "lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
27
+ "dev": "vite",
28
+ "build": "vite build",
29
+ "preview": "vite preview",
30
+ "build-only": "vite build",
31
+ "type-check": "vue-tsc --build",
32
+ "test": "vitest",
33
+ "docs:dev": "npm run --prefix ./docs docs:dev",
34
+ "docs:build": "npm run --prefix ./docs docs:build",
35
+ "prepublishOnly": "bun run build",
36
+ "docs:preview": "npm run --prefix ./docs docs:preview"
16
37
  },
17
- "license": "MIT"
38
+ "dependencies": {},
39
+ "devDependencies": {
40
+ "vue": "^3.5.18",
41
+ "@tsconfig/node22": "^22.0.2",
42
+ "@types/node": "^22.15.32",
43
+ "@vitejs/plugin-vue": "^6.0.0",
44
+ "@vue/eslint-config-typescript": "^12.0.0",
45
+ "@vue/test-utils": "^2.4.6",
46
+ "@vue/tsconfig": "^0.7.0",
47
+ "eslint": "8.49.0",
48
+ "eslint-config-airbnb": "19.0.4",
49
+ "eslint-plugin-import": "^2.25.3",
50
+ "eslint-plugin-vue": "^9.17.0",
51
+ "typescript": "~5.8.0",
52
+ "vite": "^7.0.0",
53
+ "vitest": "^3.2.4",
54
+ "vue-tsc": "^2.2.10"
55
+ }
18
56
  }
File without changes
File without changes
File without changes