-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "vue-input-autowidth",
"version": "2.2.1",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/vue-input-autowidth.umd.js",
"module": "./dist/vue-input-autowidth.es.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-input-autowidth.es.js",
"require": "./dist/vue-input-autowidth.umd.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:demo": "vite build --mode demo",
"test": "start-test dev http://localhost:3000/sandbox/index.html cypress",
"cypress": "cypress run",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore ./lib ./sandbox ./demo ./tests",
"format": "prettier ./lib ./sandbox ./demo ./tests -w -u",
"serve": "vite preview"
},
"devDependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@vitejs/plugin-vue": "^1.9.2",
"@vue/compiler-sfc": "^3.2.16",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.3.5",
"cypress": "^8.4.1",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^7.18.0",
"highlight.js": "^11.2.0",
"postcss": "^8.3.7",
"prettier": "2.4.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.15",
"typescript": "^4.3.2",
"vite": "^2.5.4",
"vite-plugin-dts": "^0.8.1",
"vue": "^3.2.16",
"vue-tsc": "^0.3.0"
}
}