-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "@altgen/typer-composable",
"version": "1.3.0",
"private": false,
"description": "A vue 3 composable for creating typewriter text",
"keywords": [
"vue",
"vue3",
"vue 3",
"composable",
"typewriter",
"typer",
"typerjs"
],
"homepage": "https://github.com/JamesManningR/VueTypewriterCompostable#readme",
"repository": "https://github.com/JamesManningR/VueTypewriterCompostable",
"license": "MIT",
"author": "James Ryan Manning <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:demo": "vite build --config demo/vite.config.ts",
"lint": "eslint --ext .ts,.js,.mjs,.cjs,.vue .",
"lint:fix": "eslint --fix --ext .ts,.js,.mjs,.cjs .",
"format": "prettier . --write",
"dev": "vite"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-vue": "^3.1.0",
"@vueuse/shared": "^9.2.0",
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.9",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"vite": "^3.1.2",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.2.38"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}