-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "@instructa/cli-tool-starter",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"description": "Simple CLI Tool Starter Package",
"author": "Kevin Kern <kevin@instructa.org>",
"license": "MIT",
"homepage": "https://instructa.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/instructa/tool-starter"
},
"keywords": [
"tool-starter"
],
"exports": {
".": "./dist/index.mjs",
"./cli": "./bin/cli.mjs"
},
"bin": {
"cli": "./bin/cli.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "unbuild",
"chmod-run": "node -e \"fs.chmodSync('dist/index.mjs', '755'); if (require('fs').existsSync('dist/cli.mjs')) require('fs').chmodSync('dist/cli.mjs', '755');\"",
"start": "nodemon --exec 'tsx src/index.ts'",
"dev": "unbuild --stub",
"run-cli": "node bin/cli.mjs",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"release": "tsx scripts/release.ts"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.4.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/node": "^22.14.1",
"c12": "^3.0.4",
"esbuild": "^0.25.2",
"nodemon": "^3.1.9",
"pathe": "^2.0.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vite": "^6.3.1",
"vitest": "^3.1.1"
}
}