-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
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
{
"name": "@ngekoding/enum",
"type": "module",
"version": "1.1.1",
"description": "Utility library for working with enumerated types (enums)",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Nur Muhammad",
"url": "https://ngekoding.github.io",
"email": "blog.nurmuhammad@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/ngekoding/enum#readme",
"repository": {
"type": "git",
"url": "https://github.com/ngekoding/enum"
},
"bugs": {
"url": "https://github.com/ngekoding/enum/issues"
},
"keywords": [
"enum",
"enumeration",
"typescript",
"javascript"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.4",
"@types/jest": "^29.5.12",
"@types/node": "^18.16.16",
"bumpp": "^9.1.0",
"eslint": "^8.41.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.3.9"
}
}