-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.38 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.38 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
{
"name": "@scolastico-dev/walu",
"author": {
"name": "Joschua Becker EDV",
"email": "support@scolasti.co",
"url": "https://scolasti.co"
},
"repository": {
"type": "git",
"url": "https://github.com/scolastico-dev/walu"
},
"version": "0.0.0",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:lib && npm run build:doc",
"build:lib": "parcel build",
"build:doc": "typedoc --out docs src/index.ts",
"prepare": "npm run build"
},
"bin": {
"walu": "./cli/main.sh"
},
"files": [
"docs",
"dist",
"cli",
"LICENSE",
"README.md"
],
"keywords": [
"walu",
"pwa",
"update",
"updater",
"service worker",
"caching",
"ota",
"capacitor"
],
"dependencies": {
"archiver": "^7.0.1",
"crypto-js": "^4.2.0",
"jszip": "^3.10.1",
"semver": "^7.7.2"
},
"devDependencies": {
"@parcel/packager-ts": "2.16.0",
"@parcel/transformer-inline-string": "2.16.0",
"@parcel/transformer-typescript-types": "2.16.0",
"@types/archiver": "^6.0.3",
"@types/crypto-js": "^4.2.2",
"@types/semver": "^7.7.1",
"parcel": "^2.16.0",
"typedoc": "^0.28.13",
"typescript": "^5.9.2"
},
"targets": {
"main": {
"includeNodeModules": true
},
"module": {
"includeNodeModules": true
}
}
}