generated from Uninen/vite-ts-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.34 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
{
"name": "@slipmatio/control-knob",
"version": "0.1.0",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"typings": "./dist/src/lib.d.ts",
"repository": "https://github.com/slipmatio/control-knob",
"author": "Ville Säävuori <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite build --config ./vite.test.config.ts && vite preview --port 3001 --config ./vite.test.config.ts",
"start": "yarn dev & wait-on tcp:3000 -v",
"test": "vitest",
"test:ci": "vitest run --coverage",
"report": "nyc report --reporter=text-summary"
},
"devDependencies": {
"@playwright/experimental-ct-vue": "1.23.2",
"@playwright/test": "1.23.2",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.5.2",
"@tailwindcss/line-clamp": "0.4.0",
"@tailwindcss/typography": "0.5.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"@vitejs/plugin-vue": "2.3.3",
"@vue/test-utils": "2.0.2",
"autoprefixer": "10.4.7",
"c8": "7.11.3",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-vue": "9.2.0",
"happy-dom": "^6.0.2",
"nyc": "15.1.0",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-nesting": "10.1.10",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.1.5",
"typescript": "4.7.4",
"vite": "2.9.14",
"vite-plugin-dts": "1.2.1",
"vite-plugin-istanbul": "2.8.0",
"vitest": "0.18.0",
"vue": "3.2.37",
"wait-on": "6.0.1"
},
"files": [
"dist/index.es.js",
"dist/index.es.js.map",
"dist/index.umd.js",
"dist/index.umd.js.map",
"dist/src/constants.d.ts",
"dist/src/ControlKnob.vue.d.ts",
"dist/src/lib.d.ts",
"dist/src/utils.d.ts",
"README.md",
"LICENSE.md"
],
"keywords": [
"vue",
"vue-component",
"knob",
"slider",
"audio",
"slipmatio"
],
"bugs": {
"url": "https://github.com/slipmatio/control-knob/issues"
},
"homepage": "https://github.com/slipmatio/control-knob"
}