-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.24 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
{
"name": "twofold",
"description": "Glorified curly bubbly templates",
"keywords": [
"✂",
"bun",
"app",
"cli",
"tags",
"tool",
"util",
"2fold",
"template"
],
"version": "0.6.0",
"license": "MIT",
"authors": [
"Cristi Constantin (https://crlf.link/)"
],
"contributors": [],
"homepage": "https://github.com/ShinyTrinkets/twofold.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ShinyTrinkets/twofold.js.git"
},
"bugs": {
"url": "https://github.com/ShinyTrinkets/twofold.js/issues"
},
"type": "module",
"main": "./src/index.ts",
"bin": {
"tfold": "./src/cli.ts"
},
"scripts": {
"fmt": "bunx prettier --write ./src/{*,*/}*.ts",
"lint": "tsc -noEmit -allowImportingTsExtensions -esModuleInterop src/*.ts",
"tfold": "./src/cli.ts"
},
"dependencies": {
"cosmiconfig": "8.x",
"fast-glob": "3.x",
"micromatch": "4.x",
"mri": "1.x",
"shell-quote": "1.x"
},
"devDependencies": {
"@types/node": "20.x",
"bun-types": "0.x",
"prettier": "2.x",
"typescript": "5.x"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}
}