-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "kmnd",
"version": "0.1.1",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=20"
},
"comments": {
"scripts": {
"build": "Builds the CLI with tsup.",
"dev": "Starts a dev server with watch to rebuild CLI.",
"format": "Formats all TypeScript files in repo with Prettier.",
"cleanup": "Deletes node_modules and dist directiories.",
"test:unit": "Run unit tests",
"test:failure": "Simulates non existing command to test error output."
}
},
"scripts": {
"build": "tsup && chmod +x dist/cli.js",
"dev": "tsup --watch --onSuccess \"chmod +x dist/cli.js\"",
"format": "prettier . --write",
"cleanup": "rimraf node_modules dist",
"test:unit": "vitest run",
"test:failure": "failhere"
},
"files": [
"dist"
],
"dependencies": {
"@inkjs/ui": "^1.0.0",
"execa": "^7.2.0",
"fast-fuzzy": "^1.12.0",
"find-up": "^6.3.0",
"graceful-fs": "^4.2.11",
"ink": "^4.3.1",
"meow": "^12.0.1",
"react": "^18.2.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@total-typescript/ts-reset": "^0.4.2",
"@tsconfig/strictest": "^2.0.1",
"@types/graceful-fs": "^4.1.6",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@types/react": "^18.2.20",
"@vitejs/plugin-react": "^4.0.4",
"chalk": "^5.3.0",
"happy-dom": "^10.9.0",
"ink-testing-library": "^3.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"packageManager": "[email protected]"
}