-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 757 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 757 Bytes
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
{
"name": "nixt",
"version": "0.4.0",
"description": "Test-runner for Nix",
"author": "Dustin Lacewell",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"bin": {
"nixt": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^18.11.18",
"ink-testing-library": "^2.1.0",
"typescript": "^4.9.4",
"vitest": "^0.27.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"ink": "^4.1.0",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"meow": "^11.0.0",
"react": "^18.2.0",
"reflect-metadata": "^0.1.13",
"zod": "^3.20.2"
}
}