-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.74 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
80
81
82
83
84
85
86
{
"name": "feedolin",
"version": "1.1.0",
"source": "application/index.html",
"author": "strukturart",
"license": "MPL-2.0",
"browserslist": [
"Firefox 48",
"defaults and not supports es6-module"
],
"targets": {
"default": {
"context": "browser",
"outputFormat": "global",
"includeNodeModules": true,
"isLibrary": false,
"engines": {
"browsers": [
"Firefox 48"
]
}
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"firefox": "48"
},
"useBuiltIns": "usage",
"corejs": "3.37",
"forceAllTransforms": false
}
]
],
"plugins": [
"babel-plugin-transform-async-to-promises",
"@babel/plugin-transform-export-namespace-from"
],
"ignore": []
},
"scripts": {
"check:es5": "es-check es5 dist/**/*.js",
"dev": "parcel dist/index.html",
"build": "rm -rf dist/* && parcel build --no-source-maps --no-content-hash --no-scope-hoist application/index.html && cp application/manifest.webapp dist && mkdir -p dist/assets/js && cp -r application/assets/icons dist/assets/ && cp application/assets/js/kaiads.v5.min.js dist/assets/js/",
"run": "parcel",
"web": "rm -rf docs/* && parcel build --dist-dir docs --public-url ./ --no-source-maps --no-content-hash application/index.html && cp application/manifest.webapp docs && cp application/manifest.webmanifest docs && mkdir -p docs/assets && cp -r application/assets/icons docs/assets/ && mkdir -p docs/assets/js/ && cp application/assets/js/kaiads.v5.min.js docs/assets/js/ && cp -r application/assets/fonts docs/assets/&& ./generate_file_list.sh"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@parcel/packager-raw-url": "^2.16.0",
"@parcel/resolver-default": "^2.16.0",
"@parcel/transformer-webmanifest": "^2.16.0",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"buffer": "^6.0.3",
"core-js": "^3.45.1",
"dotenv": "^16.4.1",
"es-check": "^9.4.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"parcel": "2.16.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"url": "^0.11.4"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"chunkai": "^1.0.1",
"dayjs": "^1.11.13",
"dompurify": "^3.0.3",
"jsqr": "^1.4.0",
"localforage": "^1.10.0",
"mithril": "^2.0.4",
"regenerator-runtime": "^0.14.1",
"rss-parser": "^3.13.0",
"swiped-events": "1.2.0"
}
}