vona-module-a-web 5.0.0

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +37 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # @cabloy/set
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "vona-module-a-web",
3
+ "version": "5.0.0",
4
+ "type": "module",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "exports": {
9
+ ".": {
10
+ "types": [
11
+ "./src/index.ts",
12
+ "./dist/index.d.ts"
13
+ ],
14
+ "development": "./src/index.ts",
15
+ "import": "./dist/index.js",
16
+ "default": "./src/index.ts"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "description": "",
21
+ "files": [
22
+ "dist",
23
+ "static",
24
+ "typings"
25
+ ],
26
+ "scripts": {
27
+ "build:front": "node ../../../../../scripts/egg-born-bin.js front-build-module",
28
+ "build:backend": "node ../../../../../scripts/egg-born-bin.js backend-build-module",
29
+ "build:all": "npm run build:front && npm run build:backend",
30
+ "preversion": "npm run build:all && git add ."
31
+ },
32
+ "keywords": [
33
+ "Cabloy Module"
34
+ ],
35
+ "author": "zhennann",
36
+ "dependencies": {}
37
+ }