-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@thi.ng/monopub",
"version": "0.0.1",
"description": "Monorepo publish/release/changelog manager",
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/monopub.git"
},
"homepage": "https://thi.ng/monopub",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"license": "Apache-2.0",
"author": "Karsten Schmidt <[email protected]>",
"type": "module",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts",
"sideEffects": false,
"bin": {
"notes": "bin/monopub"
},
"dependencies": {
"@thi.ng/api": "^8.11.9",
"@thi.ng/args": "^2.3.42",
"@thi.ng/bench": "^3.6.2",
"@thi.ng/checks": "^3.6.11",
"@thi.ng/compare": "^2.4.1",
"@thi.ng/date": "^2.7.27",
"@thi.ng/dgraph": "^2.1.130",
"@thi.ng/errors": "^2.5.15",
"@thi.ng/file-io": "^2.1.11",
"@thi.ng/logger": "^3.0.19",
"@thi.ng/rstream": "^9.0.0",
"@thi.ng/strings": "^3.8.4",
"@thi.ng/system": "^3.1.26",
"@thi.ng/text-format": "^2.2.12",
"@thi.ng/transducers": "^9.2.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^22.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"files": [
"lib/*.js",
"bin"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf ./lib",
"dev": "yarn clean && tsc -w"
}
}