|
1 | 1 | { |
2 | 2 | "name": "qwik-table-loader", |
3 | | - "version": "0.0.11", |
| 3 | + "version": "0.0.15-development", |
4 | 4 | "description": "A table library for Qwik", |
5 | | - "main": "components/TableLoader.tsx", |
| 5 | + "main": "./lib/index.qwik.mjs", |
| 6 | + "qwik": "./lib/index.qwik.mjs", |
| 7 | + "types": "./lib-types/index.d.ts", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "import": "./lib/index.qwik.mjs", |
| 11 | + "require": "./lib/index.qwik.cjs", |
| 12 | + "types": "./lib-types/index.d.ts" |
| 13 | + } |
| 14 | + }, |
| 15 | + "files": [ |
| 16 | + "lib", |
| 17 | + "lib-types" |
| 18 | + ], |
6 | 19 | "engines": { |
7 | | - "node": ">=16.0.0" |
| 20 | + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" |
8 | 21 | }, |
| 22 | + "private": false, |
| 23 | + "type": "module", |
9 | 24 | "scripts": { |
| 25 | + "build": "qwik build", |
| 26 | + "build.lib": "vite build --mode lib", |
| 27 | + "build.types": "tsc --emitDeclarationOnly", |
| 28 | + "dev": "vite --mode ssr", |
| 29 | + "dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force", |
10 | 30 | "fmt": "prettier --write .", |
11 | 31 | "fmt.check": "prettier --check .", |
| 32 | + "lint": "eslint \"src/**/*.ts*\"", |
| 33 | + "release": "np", |
| 34 | + "start": "vite --open --mode ssr", |
| 35 | + "test": "echo \"No test specified\" && exit 0", |
12 | 36 | "qwik": "qwik" |
13 | 37 | }, |
14 | 38 | "devDependencies": { |
15 | | - "@builder.io/qwik": "^1.2.5", |
16 | | - "@types/node": "^20.3.3", |
17 | | - "prettier": "2.8.8", |
18 | | - "typescript": "5.1.6", |
19 | | - "undici": "5.22.1", |
20 | | - "vite": "4.3.9", |
21 | | - "vite-tsconfig-paths": "4.2.0" |
| 39 | + "@builder.io/qwik": "1.5.2", |
| 40 | + "@types/eslint": "^8.56.6", |
| 41 | + "@types/node": "^20.11.30", |
| 42 | + "@typescript-eslint/eslint-plugin": "^7.3.1", |
| 43 | + "@typescript-eslint/parser": "^7.3.1", |
| 44 | + "autoprefixer": "^10.4.14", |
| 45 | + "eslint": "^8.57.0", |
| 46 | + "eslint-plugin-qwik": "latest", |
| 47 | + "np": "^8.0.4", |
| 48 | + "postcss": "^8.4.31", |
| 49 | + "prettier": "^3.2.5", |
| 50 | + "prettier-plugin-tailwindcss": "^0.5.4", |
| 51 | + "tailwindcss": "3.3.3", |
| 52 | + "typescript": "5.3.3", |
| 53 | + "undici": "*", |
| 54 | + "vite": "^5.1.6", |
| 55 | + "vite-tsconfig-paths": "^4.2.1" |
22 | 56 | }, |
23 | 57 | "prettier": { |
24 | 58 | "semi": false |
25 | | - }, |
26 | | - "packageManager": "yarn@3.6.1", |
27 | | - "publishConfig": { |
28 | | - "@jimmynguyen1308:registry": "https://npm.pkg.github.com" |
29 | | - }, |
30 | | - "repository": { |
31 | | - "type": "git", |
32 | | - "url": "git+https://github.com/jimmynguyen1308/qwiktable.git" |
33 | | - }, |
34 | | - "keywords": [ |
35 | | - "qwik", |
36 | | - "table", |
37 | | - "table-loader" |
38 | | - ], |
39 | | - "author": "jimmynguyen1308", |
40 | | - "license": "ISC", |
41 | | - "bugs": { |
42 | | - "url": "https://github.com/jimmynguyen1308/qwiktable/issues" |
43 | | - }, |
44 | | - "homepage": "https://github.com/jimmynguyen1308/qwiktable#readme" |
| 59 | + } |
45 | 60 | } |
0 commit comments