-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.25 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
{
"name": "@alimir/wp-toolkit",
"version": "2.0.1",
"description": "npm-based build and deploy toolkit for WordPress plugins — compile assets, package releases, rsync deploy, and optional WordPress.org SVN publish.",
"type": "module",
"bin": {
"wp-toolkit": "./bin/wp-toolkit.mjs"
},
"exports": {
".": "./src/context.mjs"
},
"files": [
"bin",
"src",
"wp-toolkit.config.example.mjs",
".env.example"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node bin/wp-toolkit.mjs"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"build",
"deploy",
"grunt",
"sass",
"wordpress-org",
"svn",
"rsync"
],
"author": {
"name": "TechnoWich",
"email": "wpulike@gmail.com",
"url": "https://wpulike.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Alimir/wp-toolkit.git"
},
"bugs": {
"url": "https://github.com/Alimir/wp-toolkit/issues"
},
"homepage": "https://www.npmjs.com/package/@alimir/wp-toolkit",
"engines": {
"node": ">=18"
},
"dependencies": {
"chokidar": "^4.0.3",
"lightningcss": "^1.29.3",
"preprocess": "^3.2.0",
"sass": "^1.89.2",
"terser": "^5.43.1"
}
}