mirror of
https://github.com/nvms/prsm.git
synced 2025-12-16 16:10:54 +00:00
- Replace class-based implementation with functional approach - Switch from Manten to Vitest for testing - Update README with clearer API documentation - Fix alphabet randomization test
32 lines
641 B
JSON
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"
|
|
}
|
|
}
|