-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.68 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
{
"name": "voicecapture-vue",
"version": "0.1.0",
"private": false,
"type": "module",
"files": [
"dist"
],
"main": "./dist/voicecapture-vue.umd.cjs",
"module": "./dist/voicecapture-vue.js",
"types": "./dist/main.d.ts",
"author": "lucasferreiralimax (https://github.com/lucasferreiralimax)",
"repository": "https://github.com/livresaber/voicecapture-vue",
"bugs": {
"url": "https://github.com/livresaber/voicecapture-vue/issues"
},
"exports": {
".": {
"import": "./dist/voicecapture-vue.js",
"require": "./dist/voicecapture-vue.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "npm run build:module && vite build",
"build:module": "vite build --config vite-module.config.js",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"test:e2e": "start-server-and-test vite preview http-get://localhost:4173 'cypress run --e2e' --timeout 30000",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http-get://localhost:4173 'cypress open --e2e'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"nucleus-vue": "^0.0.14",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"cypress": "^13.17.0",
"eslint": "^9.19.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"sass-embedded": "^1.83.4",
"start-server-and-test": "^2.0.10",
"vite": "^5.4.14",
"vite-plugin-style-inject": "^0.0.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.8"
}
}