-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@juzi/wechaty-puppet-rabbit",
"version": "1.0.46",
"type": "module",
"description": "",
"main": "index.js",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
},
"./dto": {
"import": "./dist/esm/src/dto.js",
"require": "./dist/cjs/src/dto.js"
}
},
"scripts": {
"dist": "npm run clean && npm run build && npm run dist:commonjs",
"build": "tsc && tsc -p tsconfig.cjs.json",
"dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
"clean": "rm -fr dist/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@juzi/wechaty-puppet": "^1.0.134",
"amqplib": "^0.7.1",
"file-box": "npm:@juzi/file-box@^1.7.9",
"onirii": "^1.3.6",
"uuid": "^11.0.3"
},
"devDependencies": {
"@swc/core": "^1.9.3",
"ts-node": "10.9.2",
"type-fest": "^4.30.0",
"typescript": "5.7.2"
},
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/juzibot/puppet-rabbit.git"
}
}