-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "directus-helper",
"version": "1.0.3",
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node ./dist/cli.js",
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava",
"test:w": "ava --watch",
"format": "npx @biomejs/biome format --write"
},
"files": ["dist"],
"dependencies": {
"chokidar": "^3.6.0",
"clipboardy": "^4.0.0",
"env-paths": "^3.0.0",
"figlet": "^1.8.1",
"ink": "^6.0.0",
"ink-link": "^4.1.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"react": "^19.1.0",
"zod": "^3.25.63"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@directus/sdk": "^19.1.0",
"@directus/types": "^13.1.2",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/chokidar": "^2.1.7",
"@types/deep-diff": "^1.0.5",
"@types/figlet": "^1.7.0",
"@types/react": "^19.1.8",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^6.4.0",
"chalk": "^5.4.1",
"eslint-config-xo-react": "^0.28.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsimp": "^2.0.12",
"typescript": "^5.8.3",
"xo": "^1.1.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": ["--import=tsimp"]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config"
}