-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 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
{
"name": "libwiz",
"private": true,
"version": "1.0.0",
"description": "A powerful CLI tool for building modern JavaScript and TypeScript libraries",
"sideEffects": false,
"main": "./dist/index.js",
"author": "xettri",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/web-tool-kit/libwiz"
},
"homepage": "https://github.com/web-tool-kit/libwiz#readme",
"scripts": {
"prepare": "husky && npm run build",
"build": "rimraf dist && tsc && tsc-alias && node scripts/postbuild.mjs",
"release": "pnpm build && cd dist && pnpm publish --access public",
"release:rc": "pnpm release --tag rc",
"release:dry": "pnpm release --dry-run",
"release:local": "pnpm release --no-git-checks --tag local --registry http://localhost:4873",
"prettier": "prettier --write ./"
},
"bin": {
"libwiz": "./dist/cli/index.js"
},
"dependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"chokidar": "^3.6.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"picocolors": "^1.0.1",
"resolve-from": "^5.0.0",
"tslib": "^2.7.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/clone-deep": "^4.0.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.2",
"@types/yargs": "^17.0.33",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"tsc-alias": "^1.8.16",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"lint-staged": {
"src/**/*": [
"prettier --write"
],
"scripts/**/*": [
"prettier --write"
]
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"cli",
"tooling",
"build-tool"
]
}