This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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
{
"name": "chooj",
"version": "0.0.0",
"description": "Matrix client for KaiOS",
"private": true,
"scripts": {
"build": "rm -rf build && parcel build --dist-dir build --no-source-maps --detailed-report 12 && yarn node justkai.js",
"devbuild": "rm -rf build && parcel build --no-optimize --dist-dir build",
"clean": "yarn run clean:parcel",
"serve": "yarn run devbuild && serve ./build",
"clean:parcel": "rm -rf .parcel-cache build",
"lint": "tslint -p ./tsconfig.json",
"checkBase": "tsc -p ./tsconfig.json --noEmit",
"checkSw": "tsc -p ./tsconfig.service-worker.json --noEmit",
"check": "yarn run checkBase && yarn run checkSw",
"pretty": "yarn run prettier -w src",
"addAds": "yarn node addAds.js --path ./kaiads"
},
"author": "Farooq Karimi Zadeh",
"license": "GPLv3-or-later",
"dependencies": {
"KaiUI": "npm:kaiuing-inferno@^3.3.1",
"abortcontroller-polyfill": "^1.7.5",
"classnames": "^2.3.1",
"core-js": "^3.26.1",
"inferno": "^8.2.2",
"inferno-dev-utils": "^6.0.4",
"inferno-extras": "^8.0.6",
"localforage": "^1.10.0",
"matrix-js-sdk": "^26.0.0",
"prettier": "^2.8.4",
"qr-scanner": "^1.4.2",
"xmimetype": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@parcel/transformer-babel": "^2.8.2",
"@parcel/transformer-sass": "^2.8.2",
"@parcel/transformer-typescript-tsc": "^2.9.3",
"babel-plugin-inferno": "^6.5.0",
"buffer": "^5.5.0",
"crypto-browserify": "^3.12.0",
"htmlparser2": "^8.0.1",
"parcel": "^2.8.2",
"postcss": "^8.2.1",
"postcss-modules": "^4.3.0",
"process": "^0.11.10",
"serve": "^14.1.2",
"stream-browserify": "^3.0.0",
"ts-plugin-inferno": "^6.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4",
"util": "^0.12.3"
},
"browserslist": "Firefox 48",
"targets": {
"default": {
"source": [
"src/index.html",
"src/manifest.webapp",
"src/sw.ts",
"src/chooj.png"
]
}
}
}