-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "astro-netease-player",
"version": "1.0.2",
"description": "A netease music plugin for adding a player to your astro website.",
"keywords": [
"astro",
"netease",
"aplayer",
"withastro",
"audio",
"astro-component"
],
"bugs": {
"url": "https://github.com/syhily/astro-netease-player/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/syhily/astor-netease-player"
},
"license": "MIT",
"author": "Yufan Sheng <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
"./resolver.ts": "./resolver.ts",
"./MusicPlayer.astro": {
"types": "./MusicPlayer.astro.tsx",
"import": "./MusicPlayer.astro"
},
"./UnstyledMusicPlayer.astro": {
"types": "./UnstyledMusicPlayer.astro.tsx",
"import": "./UnstyledMusicPlayer.astro"
},
"./netease/config.ts": "./netease/config.ts",
"./netease/encrypt.ts": "./netease/encrypt.ts",
"./netease/request.ts": "./netease/request.ts",
"./netease/song.ts": "./netease/song.ts"
},
"scripts": {
"lint": "biome check --write . && prettier . --write"
},
"dependencies": {
"aplayer-ts": "^2.5.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.11",
"prettier-plugin-organize-imports": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.5",
"astro": "^5.1.3"
}
}