-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@selize/files",
"version": "1.2.0",
"author": "Snroe",
"license": "MIT",
"description": "check selize project and create files",
"keywords": [
"Snroe",
"selize"
],
"homepage": "https://github.com/snroe/selize-files#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/snroe/selize-files.git"
},
"bugs": "https://github.com/snroe/selize-files/issues",
"main": "./lib/main.mjs",
"type": "module",
"types": "./lib/main.d.ts",
"scripts": {
"build": "bun run -c=bunfig.toml build.ts && bun run build:type",
"build:type": "tsc --emitDeclarationOnly --outDir lib",
"check": "tsc --noEmit",
"clean": "rimraf lib node_modules/.tmp",
"test": "bun run check && bun test --dir __tests__",
"publish": "npm publish --access public",
"prepare": "husky",
"commit": "commit"
},
"engines": {
"node": ">=20",
"bun": ">=1.0.0"
},
"dependencies": {
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-angular": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/prompt-cli": "^20.1.0",
"@types/bun": "^1.2.18",
"@types/fs-extra": "^11.0.4",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}