-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "@ropescore/components",
"version": "1.9.1",
"author": "Svante Bengtson <svante@swantzter.se> (https://swantzter.se)",
"license": "MIT",
"homepage": "https://components.ropescore.com",
"repository": "https://github.com/RopeScore/components",
"files": [
"dist"
],
"main": "./dist/rs-components.umd.js",
"module": "./dist/rs-components.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/rs-components.es.js"
},
"require": {
"types": "./dist/main.d.ts",
"default": "./dist/rs-components.umd.js"
}
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build": "vite build",
"build:storybook": "storybook build",
"postversion": "git push && git push --tags",
"prepack": "npm run build",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.vue,.js",
"lint:fix": "npm run lint -- --fix",
"typecheck": "vue-tsc --noEmit",
"storybook": "storybook dev -p 6006",
"chromatic": "npx chromatic -b build:storybook"
},
"dependencies": {
"eslint-config-love": "^43.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@iconify-json/mdi": "^1.1.64",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/vue3": "^8.0.0",
"@storybook/vue3-vite": "^8.0.0",
"@types/uuid": "^9.0.8",
"@unocss/preset-wind": "^0.58.6",
"@unocss/transformer-compile-class": "^0.58.6",
"@unocss/transformer-directives": "^0.58.6",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.21",
"@vue/tsconfig": "^0.5.1",
"babel-loader": "^9.1.3",
"chromatic": "^11.0.8",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.23.0",
"storybook": "^8.0.0",
"typescript": "5.3",
"unocss": "^0.58.6",
"unplugin-icons": "^0.18.5",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vue": "^3.4.21",
"vue-loader": "^17.4.2",
"vue-router": "^4.3.0",
"vue-tsc": "^2.0.6"
}
}