-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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": "@capgo/capacitor-plugin-standard-version",
"version": "2.0.24",
"description": "Default standard-version config for Capacitor plugins",
"author": "Martin Donadieu <martindonadieu@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Cap-go/plugin-standard-version#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Cap-go/plugin-standard-version.git"
},
"bugs": {
"url": "https://github.com/Cap-go/plugin-standard-version/issues"
},
"keywords": [
"capacitor",
"capgo",
"standard-version",
"bin",
"cli"
],
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"bin": {
"capacitor-plugin-standard-version": "dist/index.js"
},
"scripts": {
"dev": "set NODE_ENV=development&& npx webpack --config webpack.config.js",
"no-debug": "node dist/index.js",
"build": "set NODE_ENV=production&& npx webpack --config webpack.config.js",
"pack": "pkg",
"lint": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"commit-and-tag-version": "^12.6.0",
"merge-deep": "^3.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"git-format-staged": "^3.1.1",
"globals": "^16.4.0",
"husky": "^9.1.7",
"nodemon": "^3.1.10",
"pkg": "^5.8.1",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}