|
1 | 1 | { |
2 | 2 | "name": "@kalisio/feathers-localforage", |
3 | | - "version": "1.2.0", |
4 | 3 | "description": "A FeathersJS client side service based on localforage that persists to IndexedDB, WebSQL, or LocalStorage", |
| 4 | + "version": "1.2.0", |
| 5 | + "type": "module", |
| 6 | + "exports": { |
| 7 | + ".": { |
| 8 | + "development": "./src/index.js", |
| 9 | + "import": "./dist/index.mjs", |
| 10 | + "require": "./dist/index.cjs" |
| 11 | + } |
| 12 | + }, |
| 13 | + "files": [ |
| 14 | + "dist" |
| 15 | + ], |
| 16 | + "standard": { |
| 17 | + "ignore": [ |
| 18 | + "dist/**" |
| 19 | + ] |
| 20 | + }, |
| 21 | + "scripts": { |
| 22 | + "build": "vite build", |
| 23 | + "lint": "standard --fix", |
| 24 | + "test": "vitest run --coverage" |
| 25 | + }, |
5 | 26 | "keywords": [ |
6 | | - "feathers", |
7 | | - "feathers-plugin", |
8 | | - "feathersjs-offline", |
| 27 | + "feathersjs", |
| 28 | + "locaforage", |
9 | 29 | "offline-first", |
10 | 30 | "mobile" |
11 | 31 | ], |
12 | 32 | "author": { |
13 | | - "name": "Feathersjs-offline contributors", |
14 | | - "email": "feathersjs-offline@hillerstrom.name", |
15 | | - "url": "https://github.com/feathersjs-offline" |
| 33 | + "name": "KALISIO <contact@kalisio.com>", |
| 34 | + "url": "https://github.com/kalisio" |
16 | 35 | }, |
17 | | - "contributors": [ |
18 | | - { |
19 | | - "name": "Kalisio contributors", |
20 | | - "url": "https://github.com/kalisio" |
21 | | - } |
22 | | - ], |
23 | | - "bugs": { |
24 | | - "url": "https://github.com/feathersjs-offline/localforage/issues" |
25 | | - }, |
26 | | - "homepage": "https://github.com/feathersjs-offline/localforage", |
| 36 | + "contributors": [], |
27 | 37 | "license": "MIT", |
28 | | - "main": "lib/feathers-localforage.js", |
29 | | - "type": "module", |
30 | | - "directories": { |
31 | | - "src": "src", |
32 | | - "lib": "lib", |
33 | | - "test": "test" |
34 | | - }, |
35 | | - "files": [ |
36 | | - "src", |
37 | | - "lib" |
38 | | - ], |
39 | | - "funding": { |
40 | | - "type": "opencollective", |
41 | | - "url": "https://opencollective.com/feathers" |
42 | | - }, |
43 | 38 | "repository": { |
44 | 39 | "type": "git", |
45 | | - "url": "git://github.com/feathersjs-offline/localforage.git" |
| 40 | + "url": "git://github.com/kalisio/feathers-ekosystem.git", |
| 41 | + "directory": "packages/feathers-localforage" |
46 | 42 | }, |
47 | | - "engines": { |
48 | | - "node": ">= 12" |
49 | | - }, |
50 | | - "standard": { |
51 | | - "ignore": ["lib/"] |
52 | | - }, |
53 | | - "scripts": { |
54 | | - "test": "npm run vitest", |
55 | | - "vitest": "vitest run", |
56 | | - "test:watch": "vitest", |
57 | | - "lint": "standard --fix", |
58 | | - "prepublish": "npm run build", |
59 | | - "publish": "git push origin --tags && git push origin", |
60 | | - "build": "vite build", |
61 | | - "release:patch": "npm version --force patch && npm publish --access public", |
62 | | - "release:minor": "npm version --force minor && npm publish --access public", |
63 | | - "release:major": "npm version --force major && npm publish --access public" |
| 43 | + "bugs": { |
| 44 | + "url": "https://github.com/kalisio/feathers-ekosystem/issues" |
64 | 45 | }, |
| 46 | + "homepage": "https://kalisio.github.io/feathers-ekosystem/packages/feathers-locaforage", |
65 | 47 | "dependencies": { |
66 | 48 | "@feathersjs/adapter-commons": "catalog:", |
67 | 49 | "@feathersjs/commons": "catalog:", |
|
78 | 60 | "@types/debug": "catalog:", |
79 | 61 | "@types/express": "catalog:", |
80 | 62 | "@types/node": "catalog:", |
81 | | - "chai": "catalog:", |
82 | 63 | "core-js": "catalog:", |
83 | | - "cross-env": "catalog:", |
84 | | - "eslint-config-standard": "catalog:", |
85 | 64 | "fs-extra": "catalog:", |
86 | 65 | "npm-check-updates": "catalog:", |
87 | | - "nyc": "catalog:", |
88 | | - "parallel-webpack": "catalog:", |
89 | | - "shx": "catalog:", |
90 | 66 | "ts-node": "catalog:", |
91 | 67 | "tslint": "catalog:", |
92 | | - "typescript": "catalog:", |
93 | | - "vite": "catalog:", |
94 | | - "vite-plugin-node-polyfills": "catalog:", |
95 | | - "webpack": "catalog:", |
96 | | - "webpack-merge": "catalog:" |
| 68 | + "typescript": "catalog:" |
97 | 69 | } |
98 | 70 | } |
0 commit comments