-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 KB
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
{
"name": "@rei/carousel-engine",
"version": "1.1.0",
"description": "A flexible, API-driven carousel framework designed for modularity and adaptability. CarouselEngine provides an abstraction layer that allows consumers to define their own adapters for transforming data into a carousel-ready format.",
"type": "module",
"exports": {
".": {
"import": "./dist/carousel-engine.js",
"types": "./dist/main.d.ts"
},
"./style.css": "./dist/carousel-engine.css"
},
"main": "./dist/carousel-engine.umd.cjs",
"module": "./dist/carousel-engine.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vue-tsc -b && vite build",
"dev": "vite --open",
"format": "prettier --write --single-quote",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prepare": "husky",
"preview": "vite preview"
},
"lint-staged": {
"package.json": "npx sort-package-json@latest",
"*.{ts,mts,json,md,vue,yml,mjs}": [
"npm run format",
"npm run lint:fix"
]
},
"dependencies": {
"@vueuse/core": "^12.5.0",
"radix-vue": "^1.9.13",
"vue": "^3.5.13"
},
"devDependencies": {
"@rei/cdr-component-variables": "^9.1.0",
"@rei/cdr-tokens": "^12.6.0",
"@types/node": "^22.13.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.15.0",
"husky": "latest",
"lint-staged": "latest",
"prettier": "latest",
"sass-embedded": "^1.83.4",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"peerDependencies": {
"@rei/cedar": "^15.4.0"
}
}