-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.05 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "experiment-ui",
"version": "0.0.1",
"private": false,
"description": "Experiment UI - UI Library write for Vue 3",
"author": "Jessé Correia Lins",
"license": "MIT",
"email": "[email protected]",
"scripts": {
"build": "pnpm run build:lib",
"build:lib": "vite build && pnpm run build:types",
"build:types": "vue-tsc --declaration --emitDeclarationOnly",
"test:unit": "vitest --dom",
"test:package": "jest --verbose ./configs",
"dev": "pnpm run dev:playground",
"dev:playground": "vite dev",
"dev:storybook": "start-storybook -p 6006 -c configs/storybook",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"build:storybook": "build-storybook -c configs/storybook -o dist/storybook",
"semantic-release": "semantic-release",
"lint:eslint": "eslint --ext .ts,.js,.vue .",
"lint:prettier": "prettier --check .",
"lint:ts": "vue-tsc --noEmit",
"lint": "pnpm lint:eslint && pnpm lint:prettier && lint:ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"main": "dist/lib/experiment-ui.umd.js",
"module": "dist/lib/experiment-ui.js",
"types": "./dist/main.d.ts",
"files": [
"dist/lib/*",
"src/styles/*"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/lib/experiment-ui.umd.js",
"import": "./dist/lib/experiment-ui.js"
},
"./dist/lib/style.css": {
"require": "./dist/lib/style.css",
"import": "./dist/lib/style.css"
},
"./src/styles/index.scss": {
"require": "./src/styles/index.scss",
"import": "./src/styles/index.scss"
}
},
"dependencies": {
"@vueuse/core": "^10.7.2",
"change-case": "^5.4.2",
"flush-promises": "^1.0.2",
"maska": "^2.1.11",
"validate": "^5.2.0"
},
"peerDependencies": {
"vue": "3.4.8"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@testing-library/vue": "^8.0.1",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-airbnb-with-typescript": "^7.0.1",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"happy-dom": "^13.3.8",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.2.4",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.70.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.0.0",
"vitest": "^1.2.2",
"vitest-fail-on-console": "^0.5.1",
"vue": "^3.4.15",
"vue-tsc": "^1.8.27"
},
"publishConfig": {
"access": "public"
}
}