|
2 | 2 | "name": "@slickgrid-universal/sql", |
3 | 3 | "version": "10.4.0", |
4 | 4 | "description": "SlickGrid Universal SQL Backend Service (implements BackendService for SQL)", |
5 | | - "main": "dist/index.js", |
6 | | - "types": "dist/index.d.ts", |
| 5 | + "type": "module", |
| 6 | + "main": "./dist/index.js", |
7 | 7 | "exports": { |
8 | | - ".": "./dist/index.js" |
| 8 | + ".": { |
| 9 | + "types": "./dist/index.d.ts", |
| 10 | + "default": "./dist/index.js" |
| 11 | + }, |
| 12 | + "./package.json": "./package.json" |
| 13 | + }, |
| 14 | + "types": "./dist/index.d.ts", |
| 15 | + "publishConfig": { |
| 16 | + "access": "public" |
9 | 17 | }, |
10 | 18 | "files": [ |
11 | | - "dist" |
| 19 | + "/dist", |
| 20 | + "/src" |
12 | 21 | ], |
13 | 22 | "scripts": { |
14 | 23 | "build": "pnpm run clean && tsc", |
15 | 24 | "build:incremental": "tsc --incremental --declaration", |
16 | 25 | "clean": "remove dist tsconfig.tsbuildinfo", |
17 | 26 | "dev": "pnpm build:incremental" |
18 | 27 | }, |
19 | | - "keywords": [ |
20 | | - "slickgrid", |
21 | | - "sql", |
22 | | - "backend", |
23 | | - "service" |
24 | | - ], |
25 | | - "author": "SlickGrid Universal Team", |
26 | 28 | "license": "MIT", |
| 29 | + "author": "Ghislain B.", |
| 30 | + "homepage": "https://github.com/ghiscoding/slickgrid-universal", |
| 31 | + "repository": { |
| 32 | + "type": "git", |
| 33 | + "url": "git+https://github.com/ghiscoding/slickgrid-universal.git", |
| 34 | + "directory": "packages/sql" |
| 35 | + }, |
| 36 | + "bugs": { |
| 37 | + "url": "https://github.com/ghiscoding/slickgrid-universal/issues" |
| 38 | + }, |
27 | 39 | "dependencies": { |
28 | 40 | "@slickgrid-universal/common": "workspace:*", |
29 | 41 | "@slickgrid-universal/utils": "workspace:*" |
| 42 | + }, |
| 43 | + "funding": { |
| 44 | + "type": "ko_fi", |
| 45 | + "url": "https://ko-fi.com/ghiscoding" |
30 | 46 | } |
31 | 47 | } |
0 commit comments