-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
32
33
34
35
36
37
{
"name": "identigenium",
"version": "1.0.2",
"description": "Generate unique identifiers with configurable character sets and prefixes. Super tiny (tree-shakeable, base is 142 bytes, minified + bzipped)",
"main": "distribution/identigenium.js",
"exports": {
".": "./distribution/identigenium.js",
"./sets": "./distribution/asciiSets.js"
},
"scripts": {
"dry-update": "tsc",
"patch": "tsc && npm version patch && git push --tags && npm publish",
"release": "tsc && npm version minor && git push --tags && npm publish",
"test": "node --experimental-transform-types --no-warnings test/test.ts"
},
"keywords": [
"id-generator",
"unique-identifier",
"typescript",
"generator",
"configurable",
"incremental",
"ascii",
"characters",
"uuid-alternative"
],
"author": "Magnus Meseck",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elemental-mind/identigenium.git"
},
"type": "module",
"devDependencies": {
"@types/node": "^24.3.0"
}
}