-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1 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
{
"name": "pikpak-js",
"version": "1.1.3",
"author": {
"name": "chris-lsn",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/chris-lsn/pikpak-js-sdk.git"
},
"homepage": "https://github.com/chris-lsn/pikpak-js-sdk",
"files": ["build/index.js", "build/index.d.ts"],
"module": "index.ts",
"type": "module",
"main": "build/index.js",
"scripts": {
"dev": "bun run --watch ./src/index.ts",
"test": "bun test ./src/tests/*.ts",
"build": "bun run build.ts",
"check": "bunx @biomejs/biome check --apply .",
"release": "bunx release-it",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"bun-plugin-dts": "^0.2.1",
"bun-types": "latest",
"husky": "^8.0.3",
"release-it": "^17.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"jwt-decode": "^4.0.0"
}
}