-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
51
52
53
54
55
{
"name": "@fect-ui/vue-hooks",
"version": "0.0.2",
"public": true,
"description": "Minimalist Vue Compostion Hooks",
"author": "Fect Org",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build:types": "tsc -p ./tsconfig.json",
"build:lib": "ts-node ./script/build.ts",
"build": "npm run clean && npm run build:types && npm run build:lib",
"release": "npm publish --access public --non-interactive"
},
"files": [
"dist/",
"README.md"
],
"keywords": [
"vue compostion Hooks",
"fect"
],
"homepage": "https://github.com/fay-org/fect-use",
"repository": {
"type": "git",
"url": "https://github.com/fay-org/fect-use"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/babel__core": "^7.1.14",
"@types/fs-extra": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"vue": "^3.0.11"
},
"peerDependencies": {
"vue": "^3.0.11"
},
"dependencies": {}
}