-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "apvm-napi",
"version": "2.0.1",
"description": "Node.js bindings for APVM (Automation Plugin Version Manager) — build WordPress plugins from PRs, branches, tags, and commits. And download from releases.",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"binaryName": "apvm-napi"
},
"scripts": {
"build": "napi build --release --platform --manifest-path crates/napi/Cargo.toml --output-dir .",
"build:debug": "napi build --platform --manifest-path crates/napi/Cargo.toml --output-dir .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepare": "husky"
},
"lint-staged": {
"*.rs": "rustfmt"
},
"devDependencies": {
"@napi-rs/cli": "^3.6.1",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"index.d.ts",
"*.node"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wp-media/automation-plugin-version-manager.git"
},
"keywords": [
"wordpress",
"plugin",
"build",
"version-manager",
"napi",
"native"
]
}