-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.81 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "v-activities",
"version": "0.10.1",
"description": "Activities for Vue 3",
"repository": "datalogix/v-activities",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly",
"dev": "vite --port 3333 --open",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"preview": "vite preview",
"test": "pnpm lint && vitest run",
"test:unit": "pnpm test",
"test:e2e": "cypress open",
"cy": "cypress open-ct",
"cy:ci": "cypress run-ct --quiet --reporter spec",
"typecheck": "vue-tsc --noEmit",
"coverage": "vitest run --coverage",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"arrows-svg": "^1.8.1",
"buffer": "^6.0.3",
"change-case": "^5.4.4",
"eve": "^0.5.4",
"hookable": "^5.5.3",
"jimp": "^1.6.0",
"lodash.shuffle": "^4.2.0",
"print-js": "^1.6.0",
"snapsvg": "^0.5.1"
},
"devDependencies": {
"@cypress/vite-dev-server": "^5.2.0",
"@cypress/vue": "^6.0.1",
"@cypress/webpack-dev-server": "^3.11.0",
"@iconify/json": "^2.2.263",
"@types/jsdom": "^21.1.7",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^22.7.9",
"@types/snapsvg": "^0.5.8",
"@unocss/reset": "^0.63.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.3",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"changelogen": "^0.5.7",
"cypress": "^13.15.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.29.1",
"jsdom": "^24.1.3",
"sass": "^1.80.3",
"typescript": "^5.6.3",
"unocss": "^0.62.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-eslint": "^1.8.1",
"vitepress": "^1.4.1",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}