-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "nitron",
"version": "1.3.1",
"description": "HTML/CSS/JS to Android APK builder",
"repository": {
"type": "git",
"url": "git+https://github.com/ALightbolt4G/nitron.git"
},
"bugs": {
"url": "https://github.com/ALightbolt4G/nitron/issues"
},
"homepage": "https://github.com/ALightbolt4G/nitron#readme",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"nitron": "./dist/cli.js"
},
"files": [
"dist",
"template",
"vendor"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare-template": "node scripts/prepare-template.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"android",
"apk",
"html",
"css",
"javascript",
"mobile",
"webview",
"npm",
"build-tool"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"adm-zip": "^0.5.17",
"chokidar": "^5.0.0",
"commander": "^13.1.0",
"jszip": "^3.10.1",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"serve-handler": "^6.1.7",
"sharp": "^0.34.5",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^22.0.0",
"@types/prompts": "^2.4.9",
"@types/serve-handler": "^6.1.4",
"@types/ws": "^8.18.1",
"tsup": "^8.4.0",
"typescript": "^5.7.0"
}
}