-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "@slipmatio/toolbelt",
"type": "module",
"version": "0.8.2",
"main": "dist/toolbelt.js",
"module": "dist/toolbelt.js",
"exports": {
".": {
"types": "./dist/toolbelt.d.ts",
"import": "./dist/toolbelt.js",
"require": "./dist/toolbelt.cjs"
},
"./vue": {
"types": "./dist/index.d.ts",
"import": "./dist/vue/index.js",
"require": "./dist/vue/index.cjs"
}
},
"repository": "https://github.com/slipmatio/toolbelt",
"author": "Ville Säävuori <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "DEBUG=0 vite",
"build": "DEBUG=0 vue-tsc --build --force && vite build",
"test": "DEBUG=0 vitest",
"test:e2e": "DEBUG=0 playwright test --ui",
"test:ci-e2e": "DEBUG=0 playwright test",
"coverage": "DEBUG=0 vitest run --coverage",
"ts": "DEBUG=0 vue-tsc --build --force"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "3.0.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"happy-dom": "^16.7.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "3.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"peerDependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
},
"files": ["dist", "CHANGES.md", "README.md", "LICENSE.md"],
"keywords": ["utils", "typescript", "slipmatio"],
"bugs": {
"url": "https://github.com/slipmatio/toolbelt/issues"
},
"homepage": "https://github.com/slipmatio/toolbelt"
}