forked from vuejs/petite-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "@we-make-websites/petite-vue",
"version": "0.5.1",
"description": "5kb subset of Vue optimized for progressive enhancement",
"author": "Evan You + We Make Websites",
"homepage": "https://github.com/vuejs/petite-vue#readme",
"repository": "https://github.com/we-make-websites/petite-vue",
"license": "MIT",
"private": true,
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/petite-vue.es.js",
"require": "./dist/petite-vue.umd.js"
}
},
"main": "dist/petite-vue.umd.js",
"unpkg": "dist/petite-vue.iife.js",
"jsdelivr": "dist/petite-vue.iife.js",
"module": "./dist/petite-vue.es.js",
"devDependencies": {
"@vue/reactivity": "^3.4.0",
"@vue/shared": "^3.4.0",
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"execa": "^8.0.1",
"prettier": "^3.1.1",
"semver": "^7.5.4",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly"
}
}