-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "zero-configuration",
"description": "Manage all your configuration in one location.",
"version": "0.0.0-development",
"repository": "github:tobua/zero-configuration",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"check": "biome check --write .",
"clean": "git clean -fdx test/fixture",
"postinstall": "bun index.ts",
"template": "folders 'template/*' 'update --no-install' --output",
"test": "bun test ./test/*.test.ts",
"types": "tsc"
},
"dependencies": {
"avait": "^2.1.1",
"fast-glob": "^3.3.2",
"logua": "^3.0.3",
"parse-gitignore": "^2.0.0",
"ts-deepmerge": "^7.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/parse-gitignore": "^1.0.2",
"eslint-config-airbnb": "^19.0.4",
"typescript": "^5.7.2"
},
"peerDependencies": {
"typescript": ">= 5"
},
"type": "module",
"main": "./extend.ts",
"exports": {
".": {
"default": "./extend.ts"
}
},
"bin": "./index.ts",
"files": [
"*.ts",
"configuration",
"*.md"
],
"keywords": [
"configuration",
"build",
"webdevelopment",
"zero-config"
],
"publishConfig": {
"provenance": true
},
"configuration": {
"gitignore": [
"node_modules",
"bun.lockb",
"test/fixture/**/*"
],
"license": "MIT",
"biome": {
"extends": "recommended",
"linter": {
"rules": {
"style": {
"useBlockStatements": "off",
"noNamespaceImport": "off"
},
"correctness": {
"noNodejsModules": "off"
}
}
},
"files": {
"ignore": [
"test/fixture",
"template"
]
}
},
"vscode": "biome",
"typescript": {
"compilerOptions": {
"target": "ES2022",
"lib": [
"DOM",
"ES2022"
]
},
"extends": "plugin",
"files": [
"index.ts"
],
"exclude": [
"test/fixture"
]
}
}
}