-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "vue-create-context",
"version": "1.1.0",
"description": "An abstracted util factory for creating scoped, declarative, and reactive context-components in Vue.",
"keywords": [
"vue"
],
"files": [
"dist/**/*"
],
"scripts": {
"prettier": "prettier --config .prettierrc --write '**/*.{ts,tsx}'",
"type:check": "tsc --isolatedModules --noEmit ",
"type:watch": "yarn type:check --watch",
"type:emit": "rm -rf dist && tsc --declaration --removeComments --emitDeclarationOnly",
"build": "babel src --out-dir dist --extensions \".ts,.tsx\"",
"prepare": "yarn type:emit && yarn build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/leoyli/vue-create-context.git",
"author": "Leo Y. Li",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/preset-env": "7.5.4",
"@babel/preset-typescript": "7.3.3",
"prettier": "1.18.2",
"typescript": "3.5.3",
"vue": "2.6.10"
}
}