forked from google/zx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "@theorylabs/zx",
"version": "0.0.2",
"private": false,
"license": "SEE LICENSE IN 🍺T️HEORYLABS_LICENSE",
"description": "A tool for writing better scripts.",
"repository": {
"type": "git",
"url": "[email protected]:TheoryLabs/zx.git"
},
"author": {
"name": "Branden Dane",
"email": "[email protected]",
"url": "https://WhoAmI.TheoryLabs.dev/"
},
"homepage": "https://github.com/TheoryLabs/zx#README",
"bugs": {
"url": "https://github.com/TheoryLabs/zx/issues",
"email": "[email protected]"
},
"config": {
"ORIGINAL_REPO_URL": "https://github.com/google/zx.git"
},
"type": "module",
"types": "index.d.ts",
"bin": {
"zx": "zx.mjs"
},
"engines": {
"node": ">= 16.0.0"
},
"files": [
"*.mjs",
"*.d.ts"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "./index.mjs",
"exports": {
".": "./index.mjs",
"./globals": "./globals.mjs",
"./experimental": "./experimental.mjs",
"./package-manifest": "./package.json"
},
"scripts": {
"test": "node zx.mjs test.mjs",
"preci": "rm -fr node_modules",
"ci": "yarn install --frozen-lockfile",
"deploy": "yarn publish --access public"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0",
"chalk": "^5.0.0",
"fs-extra": "^10.0.0",
"globby": "^13.1.1",
"minimist": "^1.2.5",
"node-fetch": "^3.2.0",
"ps-tree": "^1.2.0",
"which": "^2.0.2",
"yaml": "^1.10.2"
}
}