prsm/packages/ids/package.json
nvms 2acba51367 refactor: convert ids to functional API with improved tests
- Replace class-based implementation with functional approach
- Switch from Manten to Vitest for testing
- Update README with clearer API documentation
- Fix alphabet randomization test
2025-03-26 19:03:31 -04:00

32 lines
641 B
JSON

{
"name": "@prsm/ids",
"version": "1.1.1",
"description": "",
"main": "./dist/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"release": "bumpp package.json && npm publish --access public"
},
"author": "nvms",
"license": "Apache-2.0",
"dependencies": {
"long": "^5.2.3"
},
"devDependencies": {
"bumpp": "^9.5.1",
"tsup": "^8.2.4",
"typescript": "^4.9.5",
"vitest": "^3.0.9"
}
}