-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
53
54
55
56
{
"name": "znotify",
"version": "0.9.1",
"description": "sdk for znotify",
"license": "Apache-2.0",
"main": "dist/znotify.js",
"module": "dist/znotify.mjs",
"typings": "dist/znotify.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"prebuild": "run-s clean generate",
"clean": "rimraf dist",
"prepublish": "run-s clean build",
"test": "jest",
"generate": "openapi-typescript https://raw.githubusercontent.com/ZNotify/server/master/docs/swagger.json --output src/schema.ts",
"coverage": "jest --coverage",
"release": "yarn npm publish"
},
"author": {
"name": "Zxilly",
"email": "zxilly@outlook.com"
},
"dependencies": {
"axios": "^1.2.2",
"qs": "^6.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ZNotify/js-sdk.git"
},
"packageManager": "yarn@4.4.0",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.14.15",
"@types/qs": "6.14.0",
"esbuild": "^0.23.0",
"jest": "29.7.0",
"npm-run-all2": "6.2.2",
"openapi-typescript": "7.3.0",
"rimraf": "6.0.1",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"ts-jest": "29.2.4",
"tsx": "^4.0.0",
"typescript": "5.5.4"
},
"files": [
"dist"
],
"engines": {
"node": " >=14.13.1 || >=16.0.0"
}
}