-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 883 Bytes
/
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
{
"name": "ts-shift",
"version": "0.1.17",
"author": "François Wouts <f@zenc.io>",
"license": "MIT",
"bin": {
"ts-shift": "./dist/cli/main.js"
},
"scripts": {
"prepublish": "yarn build",
"build": "rimraf dist && tsc",
"test": "jest",
"dev:generate": "ts-node-dev --respawn --watch examples src/cli/main.ts examples/user.ts -o generated/user.ts",
"dev:usage": "ts-node-dev --respawn examples/usage.ts"
},
"dependencies": {
"assert-never": "^1.2.1",
"cac": "^6.7.12",
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/prettier": "^2.4.2",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8"
}
}