generated from unplugin/unplugin-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@ohbug/unplugin",
"version": "0.2.0",
"description": "Unplugin for upload your sourceMap files to Ohbug",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"ohbug"
],
"license": "Apache-2.0",
"author": "chenyueban <[email protected]>",
"homepage": "https://github.com/ohbug-org/unplugin-ohbug",
"bugs": {
"url": "https://github.com/ohbug-org/unplugin-ohbug/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ohbug-org/unplugin-ohbug"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./esbuild": {
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
},
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "tsx scripts/postbuild.ts",
"lint": "eslint . --fix",
"lint:fix": "npm run lint -- --fix",
"play": "npm -C playground run dev",
"release": "npm run build && release-it",
"start": "tsx src/index.ts",
"preinstall": "npx only-allow pnpm",
"update:deps": "pnpm update -i -r --latest",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ohbug/cli": "^1.1.3",
"@ohbug/types": "^2.1.1",
"unplugin": "^0.9.5"
},
"devDependencies": {
"@chenyueban/eslint-config": "^1.0.12",
"@chenyueban/tsconfig": "^2.1.0",
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@release-it/conventional-changelog": "^5.1.0",
"@types/express": "^4.17.11",
"@types/multer": "^1.4.5",
"@types/node": "^18.7.13",
"@types/rimraf": "^3.0.2",
"chalk": "^5.0.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.23.0",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"release-it": "^15.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"tsx": "^3.8.2",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"webpack": "^5.74.0"
}
}