-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.08 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
{
"name": "build-strap",
"version": "5.1.0",
"description": "Node scripts for building things",
"license": "MIT",
"authors": [
"Justin Murray <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/murrayju/build-strap"
},
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"engines": {
"node": ">=20"
},
"buildStrap": {
"nodeVersion": "20.13.1",
"yarnVersion": "1.22.19",
"repoType": "git",
"copyright": "Justin Murray",
"releaseBranch": "master",
"devBranch": "dev",
"npm": {
"publish": true
},
"docker": {
"repository": "murrayju",
"registry": "ghcr.io"
}
},
"dependencies": {
"bytes": "^3.1.1",
"chokidar": "^3.6.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"get-port": "^7.1.0",
"glob": "^10.3.14",
"is-reachable": "^5.1.1",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.5",
"stream-counter": "1",
"tar": "^7.1.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/bytes": "^3.1.4",
"@types/cross-spawn": "^6.0.6",
"@types/eslint": "^8.56.10",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/rimraf": "^4.0.5",
"@types/stream-counter": "^1.0.3",
"@types/tar": "^6.1.13",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"camelcase": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"prettier": "^3.2.5",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
},
"scripts": {
"target": "tsx targets/run"
}
}