-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "@naturalcycles/cli",
"scripts": {
"prepare": "husky",
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"lbt": "dev-lib lbt",
"debug": "tsn ./src/bin/tsn.ts",
"tsn-debug": "tsc && CLI_DEBUG=1 node ./dist/bin/tsn.js testscript.ts",
"tsn-debug-esbuild": "tsc && CLI_DEBUG=1 TSN_ESBUILD=1 node ./dist/bin/tsn.js testscript.ts"
},
"dependencies": {
"@naturalcycles/nodejs-lib": "^13.0.1",
"dotenv": "^16.0.0",
"ts-node": "^10.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.2"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^15.0.0",
"@types/node": "^22.2.0"
},
"files": [
"dist",
"cfg",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"main": "dist/index.js",
"bin": {
"tsn": "dist/bin/tsn.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/cli"
},
"engines": {
"node": ">=22.12.0"
},
"version": "1.2.5",
"description": "CLI utils to be installed globally via 'npm i -g'",
"author": "Natural Cycles Team",
"license": "MIT"
}