-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.9 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@ptkdev/sveltekit-cordova-adapter",
"displayName": "SvelteKit Adapter for Mobile Apps with Cordova or Ionic Capacitor",
"description": "Adapter for SvelteKit apps that prerenders your entire site as a collection of static files for use with Cordova or Ionic Capacitor (android/ios)",
"version": "0.3.1",
"main": "./app/adapter/index.js",
"type": "module",
"exports": {
".": {
"types": "./app/adapter/index.d.ts",
"import": "./app/adapter/index.js"
},
"./package.json": "./package.json"
},
"types": "./app/adapter/index.d.ts",
"publishConfig": {
"access": "public"
},
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev/sveltekit-cordova-adapter",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/sveltekit-cordova-adapter.git"
},
"bugs": {
"url": "https://github.com/ptkdev/sveltekit-cordova-adapter/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "echo \"Compiling...\"",
"release": "npm run build",
"test": "jest app",
"docs": "git submodule update --recursive && markserv ./README.md",
"lint": "npm run lint-prettify && eslint . --cache --ext .ts,.js",
"lint-fix": "npm run lint-prettify && eslint . --cache --ext .ts,.js --fix",
"lint-prettify": "prettier --write --ignore-unknown '**/*.{md,json,ts,js}'",
"git-set-upstream": "git remote add upstream [email protected]:ptkdev/sveltekit-cordova-adapter.git && git fetch upstream",
"git-pull-upstream": "git pull upstream main && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-hash": "ts-node --esm scripts/githash.ts",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"github-workflow-next-version": "ts-node --esm scripts/version.ts",
"github-workflow-changelog": "ts-node --esm scripts/changelog_release.ts",
"npm-publish-main": "git checkout main && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"contributors-generate": "all-contributors generate",
"all-shields-generate": "all-shields-generate",
"pre-commit": "npm run contributors-generate && npm run all-shields-generate && npm run lint-fix",
"pkg-clean": "rm -rf node_modules package-lock.json && npm install && npm install eslint@7 --save-dev && husky install",
"pkg-update": "npm update",
"pkg-upgrade": "npx --yes npm-check-updates -u && npm install && npm install eslint@7 --save-dev && husky install"
},
"dependencies": {
"replace-in-file": "^6.3.5",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@ptkdev/all-shields-cli": "^2.0.2",
"@ptkdev/logger": "^1.8.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/shelljs": "^0.8.11",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"all-contributors-cli": "^6.24.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^39.8.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"json": "^11.0.0",
"markserv": "^1.17.4",
"prettier": "^2.8.4",
"shelljs": "^0.8.5",
"sirv": "^2.0.2",
"svelte": "^3.55.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6",
"uvu": "^0.5.6",
"vite": "^4.1.1",
"yargs": "^17.6.2"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0"
},
"keywords": [
"ptkdev",
"svelte",
"sveltekit",
"cordova",
"cordovajs",
"capacitor",
"ionic capacitor",
"capacitorjs",
"sveltekit adapter",
"sveltekit cordova",
"sveltekit capacitor",
"sveltekit mobile app",
"sveltekit android",
"sveltekit ios"
]
}