-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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": "@maas/vue-primitive",
"version": "1.1.0",
"description": "Vue component for passing attributes to slot content",
"keywords": [
"Vue",
"Component",
"Primitive",
"asChild"
],
"author": "Robin Scholz <https://github.com/robinscholz>, Christoph Jeworutzki <https://github.com/ChristophJeworutzki>",
"repository": "magicasaservice/vue-primitive",
"license": "MIT",
"scripts": {
"build": "vite build",
"release": "pnpm test && pnpm run build && release-it",
"test": "vitest run",
"test:watch": "vitest watch"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.6.0",
"@release-it/bumper": "^6.0.1",
"@testing-library/jest-dom": "^6.4.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "9.x",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.8.0",
"jsdom": "^25.0.0",
"release-it": "^17.4.1",
"typescript-eslint": "^8.3.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5",
"vue": "^3.4.31"
},
"packageManager": "[email protected]"
}