-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1012 Bytes
/
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
{
"name": "ts-auto-export",
"version": "0.0.5",
"description": "autoExport typescript code",
"author": "mrcat33",
"license": "MIT",
"homepage": "https://github.com/MrCat33/auto-export",
"repository": "github:MrCat33/auto-export",
"keywords": [
"vite-plugin",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp && npm publish"
},
"dependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^18.6.1",
"eslint": "^8.20.0",
"fast-glob": "^3.2.11"
},
"devDependencies": {
"bumpp": "^8.2.1",
"chokidar": "^3.5.3",
"tsup": "^6.2.0",
"typescript": "^4.6.4",
"vite": "^3.0.0"
}
}