-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 798 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 798 Bytes
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
{
"name": "@quave/enum",
"version": "1.0.0",
"description": "Lightweight utility to create rich, type-safe enums with auto-generated names, indexes, and custom properties",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src"
],
"keywords": [
"enum",
"enums",
"enumeration",
"constants",
"javascript",
"nodejs",
"utility"
],
"author": "Quave <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/quavedev/enum.git"
},
"bugs": {
"url": "https://github.com/quavedev/enum/issues"
},
"homepage": "https://github.com/quavedev/enum#readme",
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=18.0.0"
}
}