-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.37 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nuid",
"version": "2.0.1-1",
"description": "NUID - A highly performant unique identifier generator.",
"keywords": [
"unique",
"identifier",
"generator"
],
"files": [
"lib/",
"esm/",
"CODE-OF-CONDUCT.md",
"LICENSE",
"MAINTAINERS.md"
],
"types": "./lib/nuid.d.ts",
"exports": {
"require": "./lib/nuid.js",
"import": "./esm/index.mjs"
},
"homepage": "https://nats.io/nuid.js",
"repository": {
"type": "git",
"url": "[email protected]:nats-io/nuid.js.git"
},
"bugs": {
"url": "https://github.com/nats-io/nuid.js/issues"
},
"license": "Apache-2.0",
"private": false,
"author": {
"name": "The NATS Authors"
},
"contributors": [],
"main": "./index.js",
"scripts": {
"clean": "shx rm -f esm/index.mjs lib/nuid.d.ts lib/nuid.js lib/nuid.js.map",
"build": "npm run clean && deno bundle src/nuid.ts esm/index.mjs && tsc",
"test": "npm run build && node --test test/basics.js && deno test",
"doc": "rm -Rf ./docs && node_modules/.bin/typedoc --out ./docs/ && touch ./docs/.nojekyll",
"prepack": "npm run build",
"lint": "deno lint --ignore=docs/,debug/,lib/",
"fmt": "deno fmt src/ README.md MAINTAINERS.md CODE-OF-CONDUCT.md"
},
"engines": {
"node": ">= 18.x"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.4.5",
"typedoc": "^0.25.13"
}
}