-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "pro-composables",
"type": "module",
"version": "2.0.0",
"description": "方便搭建业务组件库的一些 hooks,代码都不难,懒得写文档,估计也没人看",
"author": "zhengchangfu",
"license": "MIT",
"homepage": "https://naive-ui.pro-components.cn/zh-CN/os-theme",
"repository": {
"type": "git",
"url": "https://github.com/Zheng-Changfu/pro-composables"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"require": "./lib/index.js"
}
},
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"files": [
"es",
"lib"
],
"scripts": {
"test": "vitest run",
"build": "pnpm build:es && pnpm build:lib",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"lint:fix": "eslint . --fix",
"build:es": "vite build --config vite.es.config.ts",
"build:lib": "vite build --config vite.lib.config.ts",
"release": "pnpm lint:fix && pnpm test && pnpm build && pnpm changeset && pnpm changeset:version && pnpm changeset:publish"
},
"peerDependencies": {
"vue": ">= 3.3.0"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"@vueuse/core": "^11.3.0",
"lodash-es": "^4.17.21",
"type-fest": "^4.30.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.11",
"eslint": "^9.17.0",
"esno": "^4.7.0",
"jsdom": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.6.0",
"vue": "3.4.27"
}
}