-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
55
56
57
58
59
{
"name": "uuidv7-js",
"version": "0.0.0-development",
"author": "Edoardo Ranghieri",
"description": "UUIDv7 generator library for JavaScript, RFC 9562 compliant. Supports encoding/decoding UUIDs to custom alphabets.",
"private": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"package.json"
],
"scripts": {
"prepare": "is-ci || husky",
"lint": "tsc && prettier --write . && eslint .",
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"test": "node --import tsx --test ./src/*.test.ts",
"deploy": "semantic-release"
},
"keywords": [
"uuid",
"uuidv7",
"uuid generator",
"RFC 9562"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheEdoRan/uuidv7-js.git"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.1.1",
"@types/node": "^20.12.7",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}