-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
94 lines (94 loc) · 2.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vue-typical",
"version": "2.1.0",
"description": "Vue Animated typing in ~400 bytes 🐡 of JavaScript.",
"keywords": [
"vue",
"vue-component",
"typical",
"typing",
"animation",
"vue3",
"components"
],
"authors": {
"name": "Turkyden",
"email": "wj871287@gmail.com"
},
"homepage": "http://github.com/Turkyden/vue-typical",
"repository": {
"type": "git",
"url": "git@github.com:Turkyden/vue-typical.git"
},
"bugs": {
"url": "http://github.com/Turkyden/vue-typical/issues"
},
"license": "MIT",
"main": "dist/vue-typical.umd.js",
"module": "dist/vue-typical.es.js",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"types": "dist/src/index.d.ts",
"scripts": {
"start": "vitepress-fc dev --root=docs --host",
"build": "vite build && yarn type",
"type": "tsc -d",
"test": "jest",
"docs:build": "rimraf docs/dist && cross-env NODE_ENV=production vitepress-fc build --root=docs",
"docs:serve": "cross-env NODE_ENV=production vitepress-fc serve --root=docs",
"docs:build-serve": "cross-env NODE_ENV=true yarn docs:build && yarn docs:serve",
"docs:deploy": "gh-pages -d docs/dist -t true",
"docs:build-deploy": "yarn docs:build && yarn docs:deploy",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint src/**/*.{vue,js,ts,tsx}",
"lint:fix": "yarn lint -- --fix"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vitejs/plugin-vue": "^1.1.4",
"@vitejs/plugin-vue-jsx": "^1.1.7",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.10",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"babel-jest": "^26.6.3",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"np": "^7.4.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0-beta.11",
"ts-jest": "^26.4.4",
"typescript": "^4.2.2",
"vite": "^2.4.1",
"vitepress-for-component": "latest",
"vue-jest": "^5.0.0-alpha.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}