woodenfish-bot 2.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "woodenfish-bot",
3
+ "version": "2.0.7",
4
+ "description": "woodenfish-bot",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "keywords": [
9
+ "woodenfish-bot"
10
+ ],
11
+ "files": [
12
+ "es",
13
+ "lib",
14
+ "typings"
15
+ ],
16
+ "module": "es/index.js",
17
+ "main": "lib/index.js",
18
+ "typings": "typings/index.d.ts",
19
+ "scripts": {
20
+ "dev": "npm run clean & cross-env NODE_ENV=dev rollup -c rollup.config.mjs -w",
21
+ "build": "npm run clean &cross-env NODE_ENV=production rollup -c rollup.config.mjs",
22
+ "lint": "npx eslint \"./**/*.{js,ts}\" --fix",
23
+ "format": "prettier --write ./src",
24
+ "test": "jest --config jest.config.json",
25
+ "example": "cd example && npm run dev",
26
+ "gc": "git-cz",
27
+ "gen": "node scripts/gen/index.js",
28
+ "release": "standard-version",
29
+ "clean": "rimraf lib es typings",
30
+ "linkdev": "node scripts/dev.js"
31
+ },
32
+ "devDependencies": {
33
+ "@babel/core": "^7.24.4",
34
+ "@babel/generator": "^7.24.4",
35
+ "@babel/parser": "^7.24.4",
36
+ "@babel/plugin-transform-class-properties": "^7.24.1",
37
+ "@babel/plugin-transform-runtime": "^7.24.3",
38
+ "@babel/preset-env": "^7.24.4",
39
+ "@babel/preset-typescript": "^7.24.1",
40
+ "@babel/traverse": "^7.24.1",
41
+ "@babel/types": "^7.24.0",
42
+ "@commitlint/cli": "^18.6.1",
43
+ "@commitlint/config-conventional": "^18.6.2",
44
+ "@rollup/plugin-babel": "^6.0.4",
45
+ "@rollup/plugin-commonjs": "^25.0.7",
46
+ "@rollup/plugin-json": "^6.1.0",
47
+ "@rollup/plugin-node-resolve": "^15.2.3",
48
+ "@rollup/plugin-replace": "^5.0.5",
49
+ "@types/jest": "^29.5.12",
50
+ "@types/lodash.assignin": "^4.2.9",
51
+ "@types/node": "^20.12.7",
52
+ "@types/ws": "^8.5.10",
53
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
54
+ "@typescript-eslint/parser": "^6.21.0",
55
+ "chalk": "^5.3.0",
56
+ "commitizen": "^4.3.0",
57
+ "cross-env": "^7.0.3",
58
+ "cz-conventional-changelog": "^3.3.0",
59
+ "eslint": "^8.57.0",
60
+ "eslint-config-alloy": "^5.1.2",
61
+ "eslint-config-prettier": "^9.1.0",
62
+ "eslint-plugin-jest": "^27.9.0",
63
+ "eslint-plugin-prettier": "^5.1.3",
64
+ "handlebars": "^4.7.8",
65
+ "inquirer": "^9.2.17",
66
+ "jest": "^29.7.0",
67
+ "lint-staged": "^15.2.2",
68
+ "lodash.clonedeep": "^4.5.0",
69
+ "prettier": "^3.2.5",
70
+ "readline-sync": "^1.4.10",
71
+ "rimraf": "^5.0.5",
72
+ "rollup": "^4.14.1",
73
+ "rollup-plugin-dts": "^6.1.0",
74
+ "rollup-plugin-typescript-paths": "^1.5.0",
75
+ "standard-version": "^9.5.0",
76
+ "typescript": "^5.4.5"
77
+ },
78
+ "dependencies": {
79
+ "loglevel": "^1.9.1",
80
+ "minimist": "^1.2.8",
81
+ "resty-client": "^0.0.5",
82
+ "ws": "^8.16.0"
83
+ },
84
+ "resolutions": {
85
+ "minimist": "^1.2.6",
86
+ "ansi-regex": "^4.1.1"
87
+ },
88
+ "repository": {
89
+ "type": "git",
90
+ "url": "https://github.com/"
91
+ },
92
+ "author": "wooden_fish",
93
+ "license": "MIT",
94
+ "homepage": "",
95
+ "lint-staged": {
96
+ "src/**/*.ts?(x)": [
97
+ "eslint --fix",
98
+ "prettier --write"
99
+ ]
100
+ }
101
+ }