-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 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
{
"name": "@gregoryporebski/g-utils",
"version": "1.0.0",
"description": "Generic, type safe and lightweight utilities for TypeScript",
"license": "GNU GPLv3",
"author": {
"name": "Grzegorz Porębski",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregoryporebski/g-utils.git"
},
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"keywords": [
"typescript",
"utils",
"generic",
"type-safe",
"lightweight",
"functional"
],
"files": [
"/lib"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"scripts": {
"build": "run-s clean:lib build:*",
"build:module": "bun build.ts",
"build:types": "tsc -p tsconfig.build.json",
"build:type-aliases": "tsc-alias -p tsconfig.build.json",
"clean": "run-p clean:*",
"clean:lib": "rm -rf lib",
"clean:doc": "rm -rf doc",
"doc": "run-s clean:doc doc:*",
"doc:generate": "typedoc --options typedoc.config.js"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "latest",
"@semantic-release/commit-analyzer": "latest",
"@semantic-release/git": "latest",
"@semantic-release/github": "latest",
"@semantic-release/npm": "latest",
"@semantic-release/release-notes-generator": "latest",
"bun-types": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"semantic-release": "latest",
"tsc-alias": "latest",
"typedoc": "latest",
"typedoc-plugin-markdown": "latest",
"typesafe-utils": "latest",
"typescript": "latest"
}
}