-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 KB
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
{
"name": "@arethetypeswrong/cli",
"version": "0.18.2",
"description": "A CLI tool for arethetypeswrong.github.io",
"author": "Andrew Branch & ej-shafran",
"contributors": [
{
"name": "Andrew Branch",
"url": "https://github.com/andrewbranch"
},
{
"name": "ej-shafran",
"url": "https://github.com/ej-shafran"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arethetypeswrong/arethetypeswrong.github.io.git",
"directory": "packages/cli"
},
"files": [
"LICENSE",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"bin": {
"attw": "./dist/index.js"
},
"exports": {
"./package.json": "./package.json",
"./internal/getExitCode": "./dist/getExitCode.js",
"./internal/render": "./dist/render/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc -b",
"local:install": "npm install -g .",
"local:uninstall": "npm uninstall -g @arethetypeswrong/cli",
"test": "tsc -b test && node --test \"test/dist/**/*.test.js\"",
"prepack": "pnpm tsc"
},
"type": "module",
"devDependencies": {
"@types/marked": "^5.0.0",
"@types/marked-terminal": "^3.1.3",
"@types/node": "^22.5.0",
"@types/semver": "^7.5.3",
"ts-expose-internals": "5.6.1-rc"
},
"dependencies": {
"@arethetypeswrong/core": "workspace:*",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^10.0.1",
"marked": "^9.1.2",
"marked-terminal": "^7.1.0",
"semver": "^7.5.4"
},
"engines": {
"node": ">=20"
}
}