-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@root/uuidv7",
"version": "1.0.1",
"description": "Radically simple (and efficient) UUIDv7 generation for Browsers, Node, Bun, etc (JavaScript)",
"main": "uuidv7.js",
"type": "module",
"files": [
"./uuidv7.js"
],
"exports": {
".": "./uuidv7.js",
"./*": "./*"
},
"imports": {
"@root/uuidv7": "./uuidv7.js",
"@root/uuidv7/": "./"
},
"scripts": {
"test": "node uuidv7-test.js",
"jshint": "npx -p jshint@2.x -- jshint -c ./.jshintrc ./*.js",
"lint": "npm run jshint && npm run tsc",
"prettier": "npx -p prettier@3.x -- prettier -w '**/*.{js,md}'",
"fmt": "npm run prettier",
"bump": "npm version -m \"chore(release): bump to v%s\"",
"tsc": "npx -p typescript@5.x -- tsc -p ./jsconfig.json",
"reexport-types": "npx -p jswt@1.x -- reexport",
"prepublish": "npm run reexport-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coolaj86/uuidv7.git"
},
"keywords": [
"uuid",
"uuidv7",
"ULID",
"Uint8Array",
"string",
"id",
"autoincrement"
],
"author": "AJ ONeal <aj@therootcompany.com> (https://therootcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/coolaj86/uuidv7/issues"
},
"homepage": "https://github.com/coolaj86/uuidv7#readme"
}