-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "scriptcat-lib",
"version": "1.2.2",
"description": "脚本库",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"declaration": "tsc --declaration src/msg-push/main.ts --outDir src/types/msg-push --emitDeclarationOnly",
"dev": "webpack --mode development --config webpack.dev.js",
"build": "webpack --mode production --config webpack.config.js",
"publish": "npm publish",
"example:build": "webpack --mode production --config ./webpack/webpack.example.js",
"example:dev": "webpack --mode production --config ./webpack/webpack.example.dev.js",
"dts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptscat/lib.git"
},
"author": "CodFrm <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scriptscat/lib/issues"
},
"homepage": "https://github.com/scriptscat/lib#readme",
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.23",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"jest": "^27.0.4",
"nock": "^13.2.4",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.3",
"raw-loader": "^4.0.2",
"scriptcat-webpack-plugin": "^1.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^27.0.2",
"ts-loader": "^9.2.2",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@types/tough-cookie": "^4.0.2",
"axios": "^0.25.0",
"axios-retry": "^3.2.4",
"base64-arraybuffer": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.0.0",
"stream-browserify": "^3.0.0",
"tough-cookie": "^4.1.2"
},
"files": [
"dist/",
"src/"
]
}