forked from micaww/altv-rpc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "altv-rpc",
"version": "0.1.3",
"description": "An asynchronous RPC implementation for alt:V",
"main": "dist/altv-rpc.js",
"browser": "dist/altv-rpc-browser.js",
"types": "dist/altv-rpc.d.ts",
"scripts": {
"watch": "rollup -c -w",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:prod": "rollup -c --environment NODE_ENV:production",
"type-check": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/micaww/altv-rpc.git"
},
"author": "micaww",
"license": "ISC",
"bugs": {
"url": "https://github.com/micaww/altv-rpc/issues"
},
"homepage": "https://github.com/micaww/altv-rpc#readme",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"rollup": "^2.18.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-modify": "^3.0.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.9.6"
}
}