-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.85 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
112
113
114
115
116
{
"name": "typecraft",
"version": "1.1.0",
"description": "library for crafting types and casting type inhabitants",
"keywords": [
"cast",
"casting",
"check",
"checking",
"craft",
"crafting",
"safe",
"safety",
"type",
"type-cast",
"type-casting",
"type-check",
"type-checking",
"type-craft",
"type-crafting",
"type-safe",
"type-safety",
"typecast",
"typecasting",
"typecheck",
"typechecking",
"typecraft",
"typecrafting",
"types",
"typesafe",
"typesafety",
"typescript"
],
"homepage": "https://github.com/aaditmshah/typecraft",
"bugs": "https://github.com/aaditmshah/typecraft/issues",
"license": "MIT",
"author": "Aadit M Shah <[email protected]> (https://aadit.codes/)",
"funding": [
{
"type": "individual",
"url": "https://aadit.codes/sponsor"
},
{
"type": "github",
"url": "https://github.com/sponsors/aaditmshah"
},
{
"type": "opencollective",
"url": "https://opencollective.com/aaditmshah"
},
{
"type": "patreon",
"url": "https://www.patreon.com/aaditmshah"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/aaditmshah"
}
],
"source": "src/index.ts",
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"files": [
"dist/*"
],
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/index.d.ts",
"repository": "github:aaditmshah/typecraft",
"scripts": {
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"build": "parcel build && cp src/*.d.ts dist",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@babel/preset-env": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"eslint": "8.22.0",
"eslint-config-ivory": "0.1.3",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.7",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unicorn": "43.0.2",
"fast-check": "3.1.3",
"gitmoji-cli": "6.2.0",
"husky": "8.0.1",
"is-ci": "3.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"parcel": "2.7.0",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"semantic-release-gitmoji": "1.4.4",
"typescript": "4.7.4"
}
}