forked from vuejs/petite-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
{
"name": "petite-vue",
"version": "0.2.3",
"description": "5kb subset of Vue optimized for progressive enhancement",
"files": [
"dist"
],
"main": "dist/petite-vue.umd.js",
"unpkg": "dist/petite-vue.iife.js",
"jsdelivr": "dist/petite-vue.iife.js",
"module": "./dist/petite-vue.es.js",
"exports": {
".": {
"import": "./dist/petite-vue.es.js",
"require": "./dist/petite-vue.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prepublishOnly": "tsc --noEmit && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/petite-vue.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/petite-vue/discussions"
},
"homepage": "https://github.com/vuejs/petite-vue#readme",
"devDependencies": {
"@vue/reactivity": "^3.1.4",
"@vue/shared": "^3.1.4",
"typescript": "^4.3.4",
"vite": "^2.3.8"
}
}