This repository was archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "@polymorphic-factory/vue",
"version": "0.2.1",
"author": "Shyrro <zsahmane@gmail.com>",
"license": "MIT",
"main": "src/index.ts",
"clean-package": "../../clean-package.config.json",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/polymorphic.git",
"directory": "packages/vue"
},
"bugs": {
"url": "https://github.com/chakra-ui/polymorphic/issues"
},
"scripts": {
"dev": "pnpm run build --watch",
"build": "tsup src/index.ts",
"test": "vitest run --reporter verbose --coverage",
"test:watch": "vitest",
"lint": "eslint --ext .ts,.tsx src",
"typecheck": "tsc --noEmit",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"devDependencies": {
"@testing-library/jest-dom": "5.17.0",
"@testing-library/vue": "7.0.0",
"@types/jsdom": "21.1.4",
"@types/testing-library__jest-dom": "5.14.9",
"@vitejs/plugin-vue": "4.4.0",
"@vitejs/plugin-vue-jsx": "3.0.2",
"@vitest/coverage-c8": "0.31.4",
"clean-package": "2.2.0",
"jsdom": "22.1.0",
"tsup": "6.7.0",
"typescript": "5.2.2",
"vite": "4.5.0",
"vitest": "0.31.4",
"vue": "3.3.6"
},
"peerDependencies": {
"vue": ">=3"
}
}