-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "@opentiny/vue-vite-import",
"version": "1.3.0",
"description": "A TinyVue vite import plugin",
"packageManager": "pnpm@9.14.2",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsc -w -p .",
"build": "rimraf dist && tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"pub": "pnpm publish --no-git-checks --access=public"
},
"type": "module",
"types": "dist/index.d.ts",
"author": "Tiny Vue Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:opentiny/tiny-vue.git"
},
"keywords": [
"vite-plugin",
"TinyVue",
"vite"
],
"peerDependencies": {
"vite": ">=4"
},
"dependencies": {
"change-case": "^4.1.2"
},
"devDependencies": {
"typescript": "catalog:",
"tsup": "7.2.0",
"vite": "catalog:",
"rimraf": "^3.0.2"
}
}