-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 2.41 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
{
"name": "atom-tools",
"author": "linhan",
"license": "MIT",
"description": "A quick tool and function collection designed specifically for projects using the JavaScript language",
"keywords": [
"JavaScript",
"Typescript",
"utils",
"tool",
"function",
"quick",
"atom",
"vueUse",
"vue-hooks",
"atom-tools"
],
"type": "module",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"files": [
"dist"
],
"homepage": "https://tools.atomnotion.com/",
"repository": {
"type": "git",
"url": "https://github.com/LinHanlove/atom-tools"
},
"bugs": {
"email": "2188817393@qq.com"
},
"main": "./dist/AtomTools/index.js",
"module": "./dist//AtomTools/index.js",
"miniprogram": "./dist/AtomToolsWeChat",
"types": "./dist/types/public/main.d.ts",
"exports": {
".": {
"types": "./dist/types/public/main.d.ts",
"import": "./dist/AtomTools/index.js",
"require": "./dist/AtomTools/index.js"
},
"./vue": {
"types": "./dist/types/special/Vue/main.d.ts",
"import": "./dist/AtomToolsVue/index.js",
"require": "./dist/AtomToolsVue/index.js"
},
"./wechat": {
"types": "./dist/types/special/WeChat/main.d.ts",
"import": "./dist/AtomToolsWeChat/index.js",
"require": "./dist/AtomToolsWeChat/index.js"
}
},
"scripts": {
"dev": "vite --host",
"build:special": "node buildSpecial.mjs",
"build:tools": "vite build",
"extract-commit": "node extract-commit.mjs",
"prettier": " prettier --write . ",
"build": "pnpm prettier && pnpm build:tools && pnpm build:special && tsc",
"docs:dev": "pnpm extract-commit && vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@types/node": "^20.12.7",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/typescript": "^1.8.20",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"qrcode": "^1.5.3",
"sass": "^1.77.1",
"tailwindcss": "^3.4.3",
"terser": "^5.31.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0",
"vitepress": "^1.1.3",
"vue": "^3.4.26",
"vue-tsc": "^2.0.16"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"pnpm": "^9.1.3"
}
}