|
| 1 | +{ |
| 2 | + "name": "gist-database", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "", |
| 5 | + "author": "Tim Mikeladze <[email protected]>", |
| 6 | + "keywords": [], |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/TimMikeladze/gist-database.git" |
| 10 | + }, |
| 11 | + "license": "MIT", |
| 12 | + "files": [ |
| 13 | + "./dist" |
| 14 | + ], |
| 15 | + "source": "src/index.ts", |
| 16 | + "types": "dist/index.d.ts", |
| 17 | + "type": "module", |
| 18 | + "exports": { |
| 19 | + "require": "./dist/index.cjs", |
| 20 | + "default": "./dist/index.modern.js" |
| 21 | + }, |
| 22 | + "main": "./dist/index.cjs", |
| 23 | + "module": "./dist/index.module.js", |
| 24 | + "unpkg": "./dist/index.umd.js", |
| 25 | + "scripts": { |
| 26 | + "dev": "microbundle watch src/{index}.ts --target node -f modern", |
| 27 | + "build": "rm -rf dist && microbundle src/{index}.ts", |
| 28 | + "lint": "eslint --fix \"{src,__tests__}/**/*.+(ts|tsx|js|jsx)\" && prettier --write .", |
| 29 | + "test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests", |
| 30 | + "test:ci": "yarn test --ci --coverage", |
| 31 | + "prepublishOnly": "yarn type-check && yarn lint && yarn test && yarn build", |
| 32 | + "type-check": "tsc", |
| 33 | + "release": "release-it", |
| 34 | + "commit": "commit-it" |
| 35 | + }, |
| 36 | + "release-it": { |
| 37 | + "git": { |
| 38 | + "commitMessage": "π | v${version}" |
| 39 | + }, |
| 40 | + "github": { |
| 41 | + "release": true |
| 42 | + }, |
| 43 | + "npm": { |
| 44 | + "publish": false |
| 45 | + } |
| 46 | + }, |
| 47 | + "lint-staged": { |
| 48 | + "**/*.{ts,js,jsx,tsx}": "eslint --fix", |
| 49 | + "*": "prettier --write" |
| 50 | + }, |
| 51 | + "husky": { |
| 52 | + "hooks": { |
| 53 | + "pre-commit": "lint-staged" |
| 54 | + } |
| 55 | + }, |
| 56 | + "devDependencies": { |
| 57 | + "@types/jest": "29.2.4", |
| 58 | + "@types/node": "18.11.13", |
| 59 | + "@types/object-hash": "3.0.2", |
| 60 | + "@typescript-eslint/eslint-plugin": "5.46.1", |
| 61 | + "@typescript-eslint/parser": "5.46.1", |
| 62 | + "commit-it": "0.0.7", |
| 63 | + "dotenv": "16.0.3", |
| 64 | + "eslint": "8.29.0", |
| 65 | + "eslint-config-standard": "17.0.0", |
| 66 | + "eslint-plugin-import": "2.26.0", |
| 67 | + "eslint-plugin-n": "15.6.0", |
| 68 | + "eslint-plugin-node": "11.1.0", |
| 69 | + "eslint-plugin-promise": "6.1.1", |
| 70 | + "eslint-plugin-typescript-sort-keys": "2.1.0", |
| 71 | + "husky": "8.0.2", |
| 72 | + "jest": "29.3.1", |
| 73 | + "lint-staged": "13.1.0", |
| 74 | + "microbundle": "0.15.1", |
| 75 | + "prettier": "2.8.1", |
| 76 | + "release-it": "15.5.1", |
| 77 | + "ts-jest": "29.0.3", |
| 78 | + "typescript": "4.9.4" |
| 79 | + }, |
| 80 | + "dependencies": { |
| 81 | + "crypto": "1.0.1", |
| 82 | + "is-plain-obj": "4.1.0", |
| 83 | + "node-fetch": "3.3.0", |
| 84 | + "zod": "3.20.2" |
| 85 | + }, |
| 86 | + "resolutions": {} |
| 87 | +} |
0 commit comments