-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@iassasin/wschatapi",
"version": "2.1.0",
"description": "SinAir chat api",
"homepage": "https://github.com/iassasin/wschatapi",
"main": "dist/chat-api-node.js",
"browser": "dist/chat-api-browser.js",
"types": "dist/types/api.d.ts",
"author": {
"email": "[email protected]",
"name": "iassasin",
"url": "https://sinair.ru/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iassasin/wschatapi.git"
},
"bugs": {
"url": "https://github.com/iassasin/wschatapi/issues"
},
"engines": {
"node": ">=10.0"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clear": "rm -rf dist/",
"build": "rollup -c && npm run build:types",
"build:types": "tsc -p tsconfig.json -d --emitDeclarationOnly --outDir dist/types",
"watch": "rollup -cw",
"build-release": "npm run clear && NODE_ENV=production npm run build"
},
"license": "MIT",
"peerDependencies": {
"ws": "*"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.0.1",
"ttypescript": "^1.5.10",
"typescript": "^4.5.4"
}
}