This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.99 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
{
"name": "vue-type-text",
"version": "0.1.3",
"description": "Typed components for VueJs",
"repository": {
"type": "git",
"url": "git+https://github.com/ming-tsai/vue-type-text.git"
},
"keywords": [
"typer",
"vue",
"animation",
"component",
"typed",
"vue-type-text"
],
"author": "Ming Tsai",
"license": "MIT",
"bugs": {
"url": "https://github.com/ming-tsai/vue-type-text/issues"
},
"homepage": "https://github.com/ming-tsai/vue-type-text#readme",
"main": "dist/vue-type-text.ssr.js",
"browser": "dist/vue-type-text.esm.js",
"module": "dist/vue-type-text.esm.js",
"unpkg": "dist/vue-type-text.min.js",
"types": "vue-type-text.d.ts",
"files": [
"dist/*",
"vue-type-text.d.ts",
"src/**/*.vue"
],
"scripts": {
"serve": "vue-cli-service serve dev/serve.ts",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-typescript": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"cross-env": "^7.0.2",
"minimist": "^1.2.5",
"node-forge": ">=0.10.0",
"rollup": "^2.27.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.6",
"typescript": "^4.0.3",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"engines": {
"node": ">=10"
}
}