-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "@stacknide/create-package",
"version": "1.0.0",
"description": "Scaffold a production-ready TypeScript npm package (tsup + Biome + Changesets + OIDC publishing) in seconds.",
"type": "module",
"bin": "dist/index.mjs",
"files": [
"dist",
"template"
],
"scripts": {
"sync-template": "node scripts/sync-template.mjs",
"dev": "yarn sync-template && tsx src/index.ts",
"build": "yarn sync-template && tsup",
"prepack": "yarn sync-template && tsup",
"test": "yarn sync-template && node --import tsx --test ./*.test.ts",
"start": "node dist/index.mjs",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome check ./src",
"lint": "yarn lint:tsc && yarn lint:biome",
"format": "biome check --write ./src"
},
"publishConfig": {
"access": "public"
},
"author": "Ashutosh Khanduala <https://github.com/ashuvssut>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stacknide/npm-package-template.git",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/stacknide/npm-package-template/issues"
},
"homepage": "https://github.com/stacknide/npm-package-template/tree/main/cli#readme",
"keywords": [
"create",
"scaffold",
"template",
"typescript",
"npm-package",
"tsup",
"biome",
"changesets",
"monorepo"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^24.0.0",
"tsup": "^8.5.1",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}