|
| 1 | +{ |
| 2 | + "name": "template-solidjs-library", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Template for SolidJS library using tsup for bundling. Configured with Bun, NVM, TypeScript, ESLint, Prettier, Vitest, and GHA", |
| 5 | + "type": "module", |
| 6 | + "author": "Daniel Sanchez <[email protected]>", |
| 7 | + "license": "MIT", |
| 8 | + "homepage": "https://github.com/thedanchez/template-solidjs-library#readme", |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/thedanchez/template-solidjs-library/issues" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "dist" |
| 14 | + ], |
| 15 | + "main": "./dist/index.js", |
| 16 | + "module": "./dist/index.js", |
| 17 | + "types": "./dist/index.d.ts", |
| 18 | + "browser": {}, |
| 19 | + "exports": { |
| 20 | + "solid": "./dist/index.jsx", |
| 21 | + "import": { |
| 22 | + "types": "./dist/index.d.ts", |
| 23 | + "default": "./dist/index.js" |
| 24 | + } |
| 25 | + }, |
| 26 | + "typesVersions": {}, |
| 27 | + "scripts": { |
| 28 | + "build": "tsup", |
| 29 | + "build:watch": "tsup --watch", |
| 30 | + "dev": "vite", |
| 31 | + "format": "prettier . --check", |
| 32 | + "format:fix": "prettier . --write", |
| 33 | + "lint": "eslint .", |
| 34 | + "lint:fix": "eslint . --fix", |
| 35 | + "serve": "vite preview", |
| 36 | + "start": "vite", |
| 37 | + "test": "vitest run", |
| 38 | + "test:cov": "vitest run --coverage", |
| 39 | + "typecheck": "tsc --noEmit" |
| 40 | + }, |
| 41 | + "devDependencies": { |
| 42 | + "@solidjs/testing-library": "^0.8.10", |
| 43 | + "@testing-library/jest-dom": "^6.6.3", |
| 44 | + "@types/bun": "^1.2.3", |
| 45 | + "@typescript-eslint/eslint-plugin": "^8.25.0", |
| 46 | + "@typescript-eslint/parser": "^8.25.0", |
| 47 | + "@vitest/coverage-istanbul": "^3.0.7", |
| 48 | + "eslint": "^9.21.0", |
| 49 | + "eslint-plugin-simple-import-sort": "^12.1.1", |
| 50 | + "eslint-plugin-solid": "^0.14.5", |
| 51 | + "globals": "^16.0.0", |
| 52 | + "jiti": "^2.4.2", |
| 53 | + "jsdom": "^26.0.0", |
| 54 | + "prettier": "^3.5.2", |
| 55 | + "tsup": "^8.3.6", |
| 56 | + "tsup-preset-solid": "^2.2.0", |
| 57 | + "typescript": "^5.7.3", |
| 58 | + "typescript-eslint": "^8.25.0", |
| 59 | + "vite": "^6.2.0", |
| 60 | + "vite-plugin-solid": "^2.11.2", |
| 61 | + "vitest": "^3.0.7" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "solid-js": "^1.9.4" |
| 65 | + } |
| 66 | +} |
0 commit comments