-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.7 KB
/
package.json
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
{
"name": "@capacitor/docgen",
"version": "0.3.0",
"description": "Docs Readme Markdown and JSON Generator for Capacitor Plugins",
"keywords": [
"capacitor docs generation",
"docsgen",
"capacitor",
"capacitor plugins"
],
"author": "Ionic Team",
"homepage": "https://capacitorjs.com/",
"bin": {
"docgen": "bin/docgen"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf -rf dist",
"fmt": "npm run prettier -- --write",
"lint": "npm run prettier -- --check",
"prettier": "prettier \"**/*.ts\"",
"release": "np --no-2fa",
"test": "jest",
"test.watch": "jest --watchAll",
"test.output": "node bin/docgen --project src/test/fixtures/tsconfig.json --api HapticsPlugin --output-readme src/test/README.md --output-json src/test/docs.json",
"version": "npm run build",
"watch": "tsc -w"
},
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"@types/node": "^14.18.0",
"colorette": "^2.0.20",
"github-slugger": "^1.5.0",
"minimist": "^1.2.8",
"typescript": "~4.2.4"
},
"devDependencies": {
"@capacitor/cli": "^6.1.2",
"@ionic/prettier-config": "^4.0.0",
"@stencil/core": "^4.22.1",
"@types/babel__traverse": "7.17.1",
"@types/github-slugger": "^1.3.0",
"@types/minimist": "^1.2.5",
"jest": "^29.7.0",
"np": "^7.5.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10"
},
"prettier": "@ionic/prettier-config",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/capacitor-docgen.git"
}
}