forked from Aliucord/AliucordRN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "aliucord",
"version": "0.1.0",
"license": "OSL-3.0",
"publishConfig": {
"directory": "lib",
"typings": "index.d.ts"
},
"scripts": {
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"dev": "pnpm run build -w",
"deployBundle": "pnpm build && adb push dist/Aliucord.js.bundle sdcard/AliucordRN && pnpm start",
"deployBootstrap": "pnpm build && adb push dist/bootstrap.js sdcard/AliucordRN && pnpm start",
"start": "adb shell am start -S -n com.aliucord/com.discord.main.MainActivity",
"prepublishOnly": "rm lib -r && tsc && cp package.json lib && cp LICENSE lib && cp README.md lib",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aliucord/Aliucord-RN.git"
},
"bugs": {
"url": "https://github.com/Aliucord/Aliucord-RN/issues"
},
"homepage": "https://aliucord.com",
"devDependencies": {
"@aliucord/hermesc": "latest",
"@aliucord/rollup-plugin": "latest",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-native": "^0.70.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"rollup": "^3.17.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@aliucord/react-devtools-core": "^4.24.4-aliucord.1",
"@swc/helpers": "^0.4.14"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"tslib",
"@aliucord/hermesc"
]
}
},
"packageManager": "[email protected]"
}