generated from maotoumao/MusicFreePluginTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "MusicFreePluginTemplate",
"version": "1.0.0",
"description": "MusicFree插件模板",
"source": "src/index.ts",
"main": "dist/plugin.js",
"scripts": {
"dev": "ts-node ./src/index.ts",
"watch": "parcel watch",
"build": "parcel build"
},
"keywords": [],
"author": {
"name": "猫头猫",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@react-native-cookies/cookies": "^6.2.1",
"axios": "^0.27.2",
"big-integer": "^1.6.51",
"cheerio": "^1.0.0-rc.12",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.4",
"he": "^1.2.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/he": "^1.2.0",
"@types/qs": "^6.9.7",
"parcel": "^2.9.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"target": {
"main": {
"includeNodeModules": {
"@react-native-cookies/cookies": false,
"axios": false,
"big-integer": false,
"cheerio": false,
"crypto-js": false,
"he": false,
"qs": false
}
}
}
}