-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.13 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
{
"name": "create-packkit",
"version": "3.1.0",
"description": "Highly configurable scaffolder for modern npm packages and CLIs — pick your stack (TS/JS, bundler, tests, linter, CI, releases) from a CLI or a web configurator.",
"type": "module",
"bin": {
"create-packkit": "bin/cli.js"
},
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./core": "./src/core/index.js",
"./embedded": {
"types": "./types/embedded.d.ts",
"default": "./src/embedded/index.js"
},
"./writer": {
"types": "./types/writer.d.ts",
"default": "./src/embedded/writer.js"
},
"./cli": "./src/cli/index.js",
"./scaffold": "./src/cli/write.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"src",
"types",
"README.md",
"LICENSE",
"llms.txt"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/cli.js",
"test": "node --test",
"lint": "eslint .",
"check": "npm run lint && npm test",
"check:deps": "node scripts/check-template-deps.mjs",
"integration": "node scripts/integration.mjs",
"build:web": "esbuild src/core/index.js --bundle --format=esm --outfile=docs/packkit-core.js",
"update:node": "node scripts/update-node-versions.mjs",
"gen:reference": "node scripts/gen-reference.mjs",
"sync:mcp": "node scripts/sync-mcp-version.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanMat/create-packkit.git"
},
"keywords": [
"create",
"scaffold",
"scaffolding",
"generator",
"boilerplate",
"starter",
"template",
"npm-package",
"typescript",
"cli",
"tsup",
"vitest"
],
"author": "DanMat <dannymatthew@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanMat/create-packkit/issues"
},
"homepage": "https://danmat.github.io/create-packkit/",
"dependencies": {
"@clack/prompts": "^0.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.23.0",
"eslint": "^10.8.0",
"globals": "^17.8.0"
}
}