|
1 | 1 | { |
2 | 2 | "name": "unoapi-cloud", |
3 | | - "version": "2.5.18", |
| 3 | + "version": "2.5.19", |
4 | 4 | "description": "Unoapi Cloud", |
5 | 5 | "exports": "./dist/index.js", |
6 | 6 | "types": "./dist/index.d.ts", |
|
15 | 15 | "test": "node_modules/jest/bin/jest.js --coverage", |
16 | 16 | "build": "./node_modules/typescript/bin/tsc -p .", |
17 | 17 | "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"", |
18 | | - "dev": "tsx watch src/index.ts", |
19 | | - "web-dev": "tsx watch src/web.ts", |
20 | | - "waker-dev": "tsx watch src/waker.ts", |
21 | | - "standalone-dev": "tsx watch src/standalone.ts", |
22 | | - "worker-dev": "tsx watch src/worker.ts", |
23 | | - "bulker-dev": "tsx watch src/bulker.ts", |
24 | | - "broker-dev": "tsx watch src/broker.ts", |
25 | | - "bridge-dev": "tsx watch src/bridge.ts", |
26 | | - "cloud-dev": "tsx watch src/cloud.ts", |
27 | | - "start": "node dist/src/index.js", |
28 | | - "start-ts": "node --import tsx src/index.ts", |
29 | | - "cloud": "node dist/src/cloud.js", |
30 | | - "cloud-ts": "node --import tsx src/cloud.ts", |
31 | | - "standalone": "node dist/src/standalone.js", |
32 | | - "standalone-ts": "node --import tsx src/standalone.ts", |
33 | | - "web": "node dist/src/web.js", |
34 | | - "waker": "node dist/src/waker.js", |
35 | | - "waker-ts": "node --import tsx src/waker.ts", |
36 | | - "web-ts": "node --import tsx src/web.ts", |
37 | | - "worker": "node dist/src/worker.js", |
38 | | - "worker-ts": "node --import tsx src/worker.ts", |
39 | | - "bulker": "node dist/src/bulker.js", |
40 | | - "bulker-ts": "node --import tsx src/bulker.ts", |
41 | | - "broker": "node dist/src/broker.js", |
42 | | - "broker-ts": "node --import tsx src/broker.ts", |
43 | | - "bridge": "node dist/src/bridge.js", |
44 | | - "bridge-ts": "node --import tsx src/bridge.ts", |
| 18 | + "dev": "UNOAPI_MODE=simple tsx watch src/index.ts", |
| 19 | + "web-dev": "UNOAPI_MODE=web tsx watch src/web.ts", |
| 20 | + "waker-dev": "UNOAPI_MODE=waker tsx watch src/waker.ts", |
| 21 | + "standalone-dev": "UNOAPI_MODE=standalone tsx watch src/standalone.ts", |
| 22 | + "worker-dev": "UNOAPI_MODE=worker tsx watch src/worker.ts", |
| 23 | + "bulker-dev": "UNOAPI_MODE=bulker tsx watch src/bulker.ts", |
| 24 | + "broker-dev": "UNOAPI_MODE=broker tsx watch src/broker.ts", |
| 25 | + "bridge-dev": "UNOAPI_MODE=bridge tsx watch src/bridge.ts", |
| 26 | + "cloud-dev": "UNOAPI_MODE=cloud tsx watch src/cloud.ts", |
| 27 | + "start": "UNOAPI_MODE=simple node dist/src/index.js", |
| 28 | + "start-ts": "UNOAPI_MODE=simple node --import tsx src/index.ts", |
| 29 | + "cloud": "UNOAPI_MODE=cloud node dist/src/cloud.js", |
| 30 | + "cloud-ts": "UNOAPI_MODE=cloud node --import tsx src/cloud.ts", |
| 31 | + "standalone": "UNOAPI_MODE=standalone node dist/src/standalone.js", |
| 32 | + "standalone-ts": "UNOAPI_MODE=standalone node --import tsx src/standalone.ts", |
| 33 | + "web": "UNOAPI_MODE=web node dist/src/web.js", |
| 34 | + "waker": "UNOAPI_MODE=waker node dist/src/waker.js", |
| 35 | + "waker-ts": "UNOAPI_MODE=waker node --import tsx src/waker.ts", |
| 36 | + "web-ts": "UNOAPI_MODE=web node --import tsx src/web.ts", |
| 37 | + "worker": "UNOAPI_MODE=worker node dist/src/worker.js", |
| 38 | + "worker-ts": "UNOAPI_MODE=worker node --import tsx src/worker.ts", |
| 39 | + "bulker": "UNOAPI_MODE=bulker node dist/src/bulker.js", |
| 40 | + "bulker-ts": "UNOAPI_MODE=bulker node --import tsx src/bulker.ts", |
| 41 | + "broker": "UNOAPI_MODE=broker node dist/src/broker.js", |
| 42 | + "broker-ts": "UNOAPI_MODE=broker node --import tsx src/broker.ts", |
| 43 | + "bridge": "UNOAPI_MODE=bridge node dist/src/bridge.js", |
| 44 | + "bridge-ts": "UNOAPI_MODE=bridge node --import tsx src/bridge.ts", |
45 | 45 | "clean:data": "rm -rf ./data/medias/* ./data/sessions/* ./data/stores/*.json" |
46 | 46 | }, |
47 | 47 | "devDependencies": { |
|
0 commit comments