-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.8 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "wp-theme-cli",
"version": "1.2.2",
"description": "Generate, update & remove files in your WordPress theme",
"homepage": "https://github.com/tysian/wp-theme-cli",
"bugs": {
"url": "https://github.com/tysian/wp-theme-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tysian/wp-theme-cli.git"
},
"license": "MIT",
"author": {
"name": "Jakub Bazgier",
"url": "https://github.com/tysian"
},
"type": "module",
"bin": {
"wp-theme-cli": "dist/wp-theme-cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsup src/bin/wp-theme-cli.ts --format esm --clean --minify",
"dev": "tsup src/bin/wp-theme-cli.ts --format esm --watch --clean",
"format:check": "pnpm run format && pnpm run typecheck && pnpm run lint",
"format": "prettier --write --plugin-search-dir=. \"**/*.{ts,md,json,js,mjs,cjs}\"",
"check": "pnpm run typecheck && pnpm run lint",
"lint": "eslint src --fix --cache --cache-strategy content",
"prepare": "husky install",
"start": "node dist/wp-theme-cli.js",
"typecheck": "tsc --noEmit",
"changeset": "changeset add",
"bump-version": "changeset version && changeset tag",
"release": "pnpm run build && pnpm publish --access=public"
},
"dependencies": {
"chalk": "^5.3.0",
"clarify": "^2.1.0",
"commander": "^11.0.0",
"css-tree": "^2.3.1",
"ejs": "^3.1.9",
"fast-glob": "^3.3.1",
"filenamify": "^6.0.0",
"inquirer": "^9.2.11",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"is-unicode-supported": "^1.2.0",
"lodash-es": "^4.17.21",
"log-update": "^5.0.1",
"magic-string": "^0.30.4",
"normalize-path": "^3.0.0",
"semver": "^7.5.4",
"simple-git": "^3.19.1",
"speakingurl": "^14.0.1",
"trace": "^3.1.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commander-js/extra-typings": "^11.0.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/css-tree": "^2.3.2",
"@types/ejs": "^3.1.2",
"@types/inquirer": "^9.0.3",
"@types/lodash-es": "^4.17.9",
"@types/node": "^20.6.3",
"@types/normalize-path": "^3.0.0",
"@types/semver": "^7.5.2",
"@types/speakingurl": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"tsup": "^8.3.0",
"type-fest": "^4.3.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "^14.18.0 || >=16.12.0"
}
}