-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.39 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
62
63
{
"name": "vite-plugin-slogan",
"version": "0.1.0",
"description": "Print Slogan when dev for Vite Project",
"license": "MIT",
"author": "OceanPresent <oceanpresent@163.com>",
"repository": {
"type": "git",
"url": "https://github.com/OceanPresentChao/vite-plugin-slogan.git"
},
"keywords": [
"vite",
"vite-plugin",
"typescript"
],
"homepage": "https://github.com/OceanPresentChao/vite-plugin-slogan",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --noEmit && vite build",
"dev": "esno ./src/index.ts",
"lint": "eslint .",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@types/node": "^17.0.23",
"@types/qs": "^6.9.7",
"eslint": "^8.18.0",
"esno": "^0.16.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vite-plugin-dts": "^1.6.6",
"vitest": "^0.15.2"
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "4.1.2",
"qs": "^6.11.0"
}
}