-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "wasenderapi",
"version": "0.1.5",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest --config jest.config.cjs",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"script:message": "node --loader ts-node/esm scripts/messages.ts",
"script:group": "node --loader ts-node/esm scripts/groups.ts",
"script:contact": "node --loader ts-node/esm scripts/contacts.ts",
"script:session": "node --loader ts-node/esm scripts/sessions.ts",
"script:webhook": "node --loader ts-node/esm scripts/webhook.ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.0.2"
}
}