@airpower/web 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +42 -0
- package/dist/airpower.es.js +70564 -0
- package/dist/airpower.umd.js +70568 -0
- package/dist/app.d.ts +2 -0
- package/dist/components/App.vue.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +57 -0
package/dist/app.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
package/dist/index.d.ts
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@airpower/web",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "AirPower, 一个基于TypeScript的开发工具包, 内置了数据转换、装饰器、时间日期处理、加解密与散列、文件处理、常用枚举和字典、常见数据结构处理等工具。",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Hamm",
|
|
8
|
+
"email": "admin@hamm.cn",
|
|
9
|
+
"url": "https://github.com/HammCn"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://github.com/AirPowerTeam/airpower-web#readme",
|
|
13
|
+
"repository": "https://github.com/AirPowerTeam/airpower-web",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/AirPowerTeam/airpower-web/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"AirPower",
|
|
19
|
+
"class-transformer",
|
|
20
|
+
"typescript",
|
|
21
|
+
"oop",
|
|
22
|
+
"class"
|
|
23
|
+
],
|
|
24
|
+
"main": "dist/airpower.umd.js",
|
|
25
|
+
"module": "dist/airpower.es.js",
|
|
26
|
+
"types": "dist/index.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsc && vite build",
|
|
32
|
+
"lint": "eslint src --ext .ts",
|
|
33
|
+
"preview": "vite preview"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
37
|
+
"@types/crypto-js": "^4.2.2",
|
|
38
|
+
"crypto-js": "^4.2.0",
|
|
39
|
+
"element-plus": "^2.9.7",
|
|
40
|
+
"vue": "^3.5.13",
|
|
41
|
+
"vue-router": "^4.5.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@antfu/eslint-config": "^4.11.0",
|
|
45
|
+
"@types/node": "^22.13.14",
|
|
46
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
47
|
+
"@vue/tsconfig": "^0.7.0",
|
|
48
|
+
"eslint": "^9.23.0",
|
|
49
|
+
"typescript": "^5.8.2",
|
|
50
|
+
"vite": "^6.2.0",
|
|
51
|
+
"vite-plugin-dts": "^4.5.3",
|
|
52
|
+
"vue-tsc": "^2.2.8"
|
|
53
|
+
},
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
}
|
|
57
|
+
}
|