-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.84 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.84 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cli",
"version": "0.0.0",
"description": "",
"private": true,
"license": "MIT",
"keywords": [
"cli"
],
"bin": {
"cli": "dist/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "nodemon -r dotenv/config",
"build": "npm run clean && tsc && chmod +x dist/cli.js",
"build:bang": "npm run clean && tsc && chmod +x dist/cli.js && npm run hashbang",
"start": "pnpm run build && dist/cli.js",
"pretest": "pnpm run build",
"test": "xo && ava",
"clean": "rm -Rf bin",
"hashbang": "node scripts/hashbang.mjs"
},
"files": [
"dist/cli.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/<owner>/<repo>.git"
},
"author": "",
"bugs": {
"url": "https://github.com/<owner>/<repo>/issues"
},
"homepage": "https://github.com/<owner>/<repo>",
"dependencies": {
"ink": "^3.2.0",
"meow": "^9.0.0",
"react": "^17.0.2",
"@logtail/node": "^0.1.12",
"@logtail/types": "^0.1.12",
"dotenv": "^16.0.1",
"pino": "^8.4.2",
"pino-abstract-transport": "^1.0.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/react": "^18.0.24",
"ava": "^5.0.1",
"chalk": "^4.1.2",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^2.1.0",
"typescript": "^4.8.4",
"xo": "^0.39.1",
"nodemon": "2.0.19",
"pino-pretty": "^9.1.0",
"rimraf": "^3.0.2"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"src/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"publishConfig": {
"access": "public"
}
}