-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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
{
"name": "wit-vue-ui",
"version": "0.1.1",
"private": false,
"homepage": "https://github.com/witnet/wit-vue-ui#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/witnet/wit-vue-ui/issues"
},
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/wit-vue-ui.umd.js",
"module": "dist/wit-vue-ui.es.js",
"exports": {
".": {
"import": "./dist/wit-vue-ui.es.js",
"require": "./dist/wit-vue-ui.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint:js": "eslint -c eslint.config.js --ignore-pattern .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "pnpm run lint:js && pnpm run lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"gsap": "^3.12.5",
"postcss-cli": "^11.0.0",
"sass": "^1.83.0",
"vite-svg-loader": "^5.1.0",
"vue-select": "4.0.0-beta.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@rushstack/eslint-patch": "^1.10.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/vue3": "^8.4.7",
"@storybook/vue3-vite": "^8.4.7",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.10",
"@types/vue-select": "^3.16.8",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"peerDependencies": {
"vue": "3.4.38"
}
}