-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 819 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "@prsm/ids",
"version": "2.0.0",
"description": "Short, obfuscated, collision-proof, reversible identifiers",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"test": "vitest --reporter=verbose --run",
"test:watch": "vitest",
"prepublishOnly": "npx tsc --declaration --allowJs --emitDeclarationOnly --skipLibCheck --target es2020 --module nodenext --moduleResolution nodenext --strict false --esModuleInterop true --outDir ./types src/index.js"
},
"author": "nvms",
"license": "Apache-2.0",
"dependencies": {
"long": "^5.2.3"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}