|
1 | 1 | {
|
2 | 2 | "name": "id-ts",
|
3 | 3 | "version": "1.0.0",
|
| 4 | + "description": "A lightweight, type-safe TypeScript library for generating prefixed IDs with customizable options", |
| 5 | + "author": "Max Programming", |
| 6 | + "license": "MIT", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/max-programming/id-ts.git" |
| 10 | + }, |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/max-programming/id-ts/issues" |
| 13 | + }, |
| 14 | + "homepage": "https://github.com/max-programming/id-ts#readme", |
| 15 | + "keywords": [ |
| 16 | + "id", |
| 17 | + "uuid", |
| 18 | + "nanoid", |
| 19 | + "typescript", |
| 20 | + "prefixed-ids", |
| 21 | + "type-safe", |
| 22 | + "id-generation", |
| 23 | + "unique-id" |
| 24 | + ], |
4 | 25 | "types": "./dist/index.d.ts",
|
5 | 26 | "main": "./dist/index.js",
|
6 | 27 | "module": "./dist/index.js",
|
|
17 | 38 | "test": "vitest",
|
18 | 39 | "test:ui": "vitest --ui",
|
19 | 40 | "test:run": "vitest run",
|
20 |
| - "release": "npm run test:run && npm run build && npm version", |
21 |
| - "release:patch": "npm run release patch && git push && git push --tags", |
22 |
| - "release:minor": "npm run release minor && git push && git push --tags", |
23 |
| - "release:major": "npm run release major && git push && git push --tags" |
| 41 | + "publish:dry": "bun publish --dry-run", |
| 42 | + "release": "bun test:run && bun run build", |
| 43 | + "release:patch": "bun run release && bun version patch && git push && git push --tags", |
| 44 | + "release:minor": "bun run release && bun version minor && git push && git push --tags", |
| 45 | + "release:major": "bun run release && bun version major && git push && git push --tags" |
24 | 46 | },
|
25 | 47 | "files": [
|
26 | 48 | "dist",
|
|
45 | 67 | "zod": {
|
46 | 68 | "optional": true
|
47 | 69 | }
|
48 |
| - }, |
49 |
| - "repository": { |
50 |
| - "type": "git", |
51 |
| - "url": "https://github.com/max-programming/id-ts" |
52 |
| - }, |
53 |
| - "homepage": "https://github.com/max-programming/id-ts#readme", |
54 |
| - "bugs": { |
55 |
| - "url": "https://github.com/max-programming/id-ts/issues" |
56 |
| - }, |
57 |
| - "keywords": [ |
58 |
| - "id", |
59 |
| - "nanoid", |
60 |
| - "unique", |
61 |
| - "identifier", |
62 |
| - "prefix" |
63 |
| - ], |
64 |
| - "license": "MIT" |
| 70 | + } |
65 | 71 | }
|
0 commit comments