-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@nacho-iot/js-tools",
"version": "0.2.0",
"description": "Build, run, and versioning tooling for TypeScript projects and monorepos",
"type": "module",
"scripts": {
"clean": "node bin/build.js clean",
"build": "node bin/build.js",
"build-clean": "node bin/build.js --clean",
"version": "node bin/build.js version",
"relock": "node bin/build.js relock && npm install",
"prepare": "node bin/build.js --clean"
},
"bin": {
"nacho-build": "bin/build.js",
"nacho-run": "bin/run.js"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"dist",
"src",
"tsc",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./ansi-text": {
"import": {
"types": "./dist/esm/ansi-text/index.d.ts",
"default": "./dist/esm/ansi-text/index.js"
},
"require": {
"types": "./dist/cjs/ansi-text/index.d.ts",
"default": "./dist/cjs/ansi-text/index.js"
}
},
"./bootstrap": {
"import": {
"default": "./src/util/bootstrap.mjs"
}
},
"./tsc/*": "./tsc/*"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nacho-iot/js-tools.git"
},
"author": "Greg Lauckhart <greg@lauckhart.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nacho-iot/js-tools/issues"
},
"homepage": "https://github.com/nacho-iot/js-tools#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^15.0.0",
"esbuild": "^0.28.1",
"minimatch": "^10.2.6",
"type-fest": "^5.8.0",
"typescript": "~7.0.2"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.28.1"
},
"devDependencies": {
"@types/node": "^26.1.2"
},
"publishConfig": {
"access": "public"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}