This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.81 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
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
{
"name": "@aparajita/capacitor-native-decorator",
"version": "3.0.1",
"description": "Decorator for Capacitor plugins that allows painless TypeScript<->native integration",
"keywords": [
"capacitor",
"plugin"
],
"author": "Aparajita Fishman",
"license": "MIT",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"engines": {
"node": ">=16.15.1"
},
"bin": {
"make-ios-plugin": "dist/cli/make-ios-plugin.js"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"extract-info": "node scripts/extractPackageInfo.js",
"lint.eslint": "eslint --fix --cache --ext .js,.cjs,.mjs,.ts --max-warnings 0",
"lint.prettier": "prettier --write --cache --list-different",
"lint.tsc": "tsc --noEmit",
"lint": "pnpm -s extract-info && pnpm -s lint.eslint . && pnpm -s lint.prettier . && pnpm -s lint.tsc",
"tsc": "tsc ${SOURCE_MAP} && tsc --build tsconfig-cli.json",
"builder": "pnpm -s extract-info && pnpm -s clean && pnpm -s tsc && rollup -c rollup.config.mjs",
"build": "pnpm -s builder",
"build.dev": "SOURCE_MAP=--sourceMap pnpm -s builder",
"watch": "nodemon --exec 'pnpm -s build.dev'",
"prepare": "husky install",
"release.pre": "scripts/ensure-clean.sh && pnpm -s lint",
"release": "pnpm -s release.pre && commit-and-tag-version && git push --follow-tags && pnpm publish"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "pnpm -s builder"
}
},
"ultra": {
"concurrent": [
"tsc"
]
},
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-native-decorator.git"
},
"bugs": {
"url": "https://github.com/aparajita/capacitor-native-decorator/issues"
},
"homepage": "https://github.com/aparajita/capacitor-native-decorator#readme",
"devDependencies": {
"@aparajita/eslint-config-base": "^1.1.5",
"@aparajita/prettier-config": "^1.0.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"commit-and-tag-version": "^10.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"typescript": "^4.7.4",
"ultra-runner": "^3.10.5"
},
"peerDependencies": {
"tslib": "^2.4.0"
},
"dependencies": {
"@capacitor/core": "^4.0.1"
}
}