1 | {
|
---|
2 | "name": "short-unique-id",
|
---|
3 | "version": "5.0.3",
|
---|
4 | "description": "Generate random or sequential UUID of any length",
|
---|
5 | "keywords": [
|
---|
6 | "short",
|
---|
7 | "random",
|
---|
8 | "uid",
|
---|
9 | "uuid",
|
---|
10 | "guid",
|
---|
11 | "node",
|
---|
12 | "unique id",
|
---|
13 | "generator",
|
---|
14 | "tiny"
|
---|
15 | ],
|
---|
16 | "bin": {
|
---|
17 | "short-unique-id": "bin/short-unique-id",
|
---|
18 | "suid": "bin/short-unique-id"
|
---|
19 | },
|
---|
20 | "main": "dist/short-unique-id.js",
|
---|
21 | "types": "dist/short-unique-id.d.ts",
|
---|
22 | "homepage": "https://shortunique.id",
|
---|
23 | "repository": {
|
---|
24 | "type": "git",
|
---|
25 | "url": "https://github.com/jeanlescure/short-unique-id"
|
---|
26 | },
|
---|
27 | "license": "Apache-2.0",
|
---|
28 | "runkitExampleFilename": "./runkit.js",
|
---|
29 | "scripts": {
|
---|
30 | "test": "ts-node src/test.ts",
|
---|
31 | "build": "./scripts/build",
|
---|
32 | "docs": "./scripts/docs",
|
---|
33 | "release": "release-it"
|
---|
34 | },
|
---|
35 | "release-it": {
|
---|
36 | "git": {
|
---|
37 | "changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
|
---|
38 | },
|
---|
39 | "hooks": {
|
---|
40 | "after:bump": "./scripts/release"
|
---|
41 | },
|
---|
42 | "npm": {
|
---|
43 | "publish": false
|
---|
44 | }
|
---|
45 | },
|
---|
46 | "files": [
|
---|
47 | "bin",
|
---|
48 | "dist",
|
---|
49 | "runkit.js",
|
---|
50 | "package.json"
|
---|
51 | ],
|
---|
52 | "devDependencies": {
|
---|
53 | "@types/node": "^20.3.2",
|
---|
54 | "auto-changelog": "^2.4.0",
|
---|
55 | "esbuild": "^0.18.10",
|
---|
56 | "refup": "^1.1.0",
|
---|
57 | "release-it": "^15.11.0",
|
---|
58 | "ts-node": "^10.9.1",
|
---|
59 | "tslib": "^2.6.0",
|
---|
60 | "typedoc": "^0.24.8",
|
---|
61 | "typedoc-plugin-extras": "^2.3.3",
|
---|
62 | "typedoc-plugin-rename-defaults": "^0.6.5",
|
---|
63 | "typedoc-plugin-script-inject": "^1.0.0",
|
---|
64 | "typescript": "^5.1.6"
|
---|
65 | }
|
---|
66 | }
|
---|