-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 979 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
38
39
40
41
42
{
"name": "@dovocode/enum",
"version": "1.0.0",
"description": "Create enums in JavaScript and TypeScript. Works out of the box with stripTypes. Ready for any build process.",
"main": "dist/main.js",
"module": "dist/main.js",
"type": "module",
"types": "dist/main.d.ts",
"keywords": [
"enum",
"enumerated",
"enum8",
"enum8.js",
"enum8.ts",
"stripTypes"
],
"repository": {
"type": "git",
"url": "https://github.com/dovocode/enum.git"
},
"scripts": {
"test": "vitest --typecheck",
"lint": "eslint . --ext .ts",
"build": "tsc --project tsconfig.build.json"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md"
],
"author": "Dominic Vonk",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^4.0.8"
}
}