-
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) · 891 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 891 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": "@jeppech/generic-builder-ts",
"description": "Generic builder for TypeScript",
"version": "1.1.1",
"author": "Jeppe Christiansen",
"repository": {
"type": "git",
"url": "git+https://github.com/jeppech/generic-builder-ts.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"files": [
"lib/",
"README.md"
],
"scripts": {
"tsc": "tsc && tsc -p tsconfig.cjs.json",
"prepublishOnly": "tsc"
},
"dependencies": {},
"devDependencies": {
"typescript": "^4.0.5"
},
"keywords": [
"typescript",
"generic",
"builder",
"pattern"
],
"homepage": "https://github.com/jeppech/generic-builder-ts#readme",
"bugs": {
"url": "https://github.com/jeppech/generic-builder-ts/issues"
},
"license": "ISC"
}