-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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": "better-enums",
"version": "0.2.2",
"description": "Better enums for TypeScript",
"keywords": [
"enum",
"union",
"typescript"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/matejchalk/better-enums.git"
},
"bugs": {
"url": "https://github.com/matejchalk/better-enums/issues"
},
"homepage": "https://matejchalk.github.io/better-enums/",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"prepare": "husky install",
"build": "tsup",
"test": "jest",
"test:types": "tstyche",
"docs": "typedoc",
"release": "release-it"
},
"author": "Matěj Chalk <[email protected]>",
"license": "MIT",
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.2",
"@types/jest": "^29.5.2",
"husky": "^8.0.0",
"jest": "^29.6.1",
"release-it": "^16.1.3",
"ts-jest": "^29.1.1",
"tstyche": "^1.0.0-beta.9",
"tsup": "^7.1.0",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.1",
"typescript": "^5.1.6"
}
}