-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.82 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
82
83
{
"name": "mansa",
"version": "0.2.3",
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava"
},
"files": [
"dist"
],
"dependencies": {
"@inkjs/ui": "^1.0.0",
"@xstate/react": "^3.2.2",
"axios": "^1.6.0",
"clipboardy": "^4.0.0",
"diff": "^5.1.0",
"figures": "^5.0.0",
"ignore": "^5.2.4",
"ink": "^4.1.0",
"pastel": "^2.0.0",
"prettier": "^3.1.0",
"prismjs": "^1.29.0",
"prismjs-terminal": "^1.2.3",
"react": "^18.2.0",
"react-devtools-core": "^4.28.5",
"uuid": "^9.0.1",
"xstate": "^4.38.3",
"zod": "^3.21.4",
"zx": "^7.2.3"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/diff": "^5.0.8",
"@types/ink-divider": "^2.0.3",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.0.32",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"bun-types": "latest",
"chalk": "^5.3.0",
"eslint": "^8.0.1",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"xo": "^0.54.2"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"module": "index.ts"
}