-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "condo-web-cordova-wrapper",
"version": "0.0.0-development",
"description": "\"Mock of cordova to support built-for-native B2C miniapps in web environment\"",
"main": "cordova-web.js",
"scripts": {
"test": "echo \"No tests added yet\"",
"build": "tsup",
"dev": "tsup --watch",
"lint": "prettier --check \"**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}\"",
"lint:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/open-condo-software/condo-web-cordova-wrapper.git"
},
"keywords": [
"condo",
"open-condo",
"web",
"miniapps",
"cordova"
],
"author": {
"name": "Matthew Savelev",
"email": "matthew@doma.ai",
"url": "https://github.com/SavelevMatthew"
},
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/open-condo-software/condo-web-cordova-wrapper/issues"
},
"homepage": "https://github.com/open-condo-software/condo-web-cordova-wrapper#readme",
"devDependencies": {
"@open-condo/tsconfig": "^1.0.4",
"@types/node": "^25.3.1",
"prettier": "3.7.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@open-condo/bridge": "^2.5.0"
}
}