-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@akashrajpurohit/snowflake-id",
"version": "0.0.0-development",
"description": "A simple and lightweight Node.js library to generate unique snowflake IDs.",
"repository": {
"type": "git",
"url": "https://github.com/AkashRajpurohit/snowflake-id.git"
},
"homepage": "https://github.com/AkashRajpurohit/snowflake-id",
"bugs": "https://github.com/AkashRajpurohit/snowflake-id/issues",
"author": {
"name": "AkashRajpurohit",
"email": "[email protected]",
"url": "https://akashrajpurohit.com"
},
"keywords": [
"snowflake-id",
"uuid-generator"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@vitest/coverage-v8": "^1.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"prettier": "^3.0.3",
"semantic-release": "^22.0.6",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"vitest": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation Changes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}