-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@scffld/cli",
"version": "1.8.0",
"description": "Simple code scaffolding tool using a Markdown file to define templates & properties",
"main": "dist/index.js",
"bin": {
"scffld": "./dist/cli.js"
},
"type": "module",
"scripts": {
"build": "pnpm build:swc && pnpm build:types",
"build:npm": "tsc",
"build:swc": "swc ./src -d ./dist --ignore **/*.test.ts --strip-leading-paths --config-file .swcrc",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"test:unit": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:integration": "cross-env NODE_NO_WARNINGS=1 jest --config=./jest.config.integration.js",
"test:cli": "scffld examples/simple --overwrite --name=test && scffld github:scffld-dev/cli/examples/simple --overwrite --name=test",
"prestart": "pnpm build",
"start": "npm link && scffld",
"clean": "rm -rf demo-src",
"bump": "./bump.sh",
"publish:npm": "pnpm publish --no-git-checks --access public",
"publish:jsr": "pnpm jsr publish"
},
"keywords": [
"cli",
"scaffold",
"scaffolding",
"template",
"templating",
"code-generation",
"markdown"
],
"author": "Lindsay Evans <linz@linz.id.au>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scffld-dev/cli/"
},
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
"devDependencies": {
"@gmrchk/cli-testing-library": "^0.1.2",
"@jest/globals": "^29.7.0",
"@swc/cli": "^0.4.0",
"@swc/core": "1.6.9-nightly-20240706.3",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.14.7",
"@types/shell-quote": "^1.7.5",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jsr": "^0.13.0",
"svg-term-cli": "^2.1.1",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"dependencies": {
"ansi-styles": "^6.2.1",
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"commander": "^12.1.0",
"enquirer": "^2.4.1",
"globby": "^14.0.1",
"json5": "^2.2.3",
"markdown-it": "^14.1.0",
"markdown-it-terminal": "^0.4.0",
"ora": "^8.0.1",
"shell-quote": "^1.8.1",
"yaml": "^2.4.5"
}
}