-
Notifications
You must be signed in to change notification settings - Fork 366
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "petite-vue",
"version": "0.4.1",
"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"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"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.2.27",
"@vue/shared": "^3.2.27",
"chalk": "^4.1.1",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"prettier": "^2.3.0",
"semver": "^7.3.5",
"typescript": "^4.4.3",
"vite": "^2.7.12"
}
}