@dao42/d42paas-front 0.9.24 → 0.9.25
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/package.json +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dao42/d42paas-front",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.25",
|
|
4
4
|
"description": "d42paas front",
|
|
5
5
|
"author": "dao42 paas team",
|
|
6
6
|
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
@@ -8,6 +8,18 @@
|
|
|
8
8
|
"main": "./dist/DaoPaaS.cjs",
|
|
9
9
|
"module": "./dist/DaoPaaS.cjs",
|
|
10
10
|
"types": "./dist/DaoPaaS.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"prebuild": "rimraf dist",
|
|
13
|
+
"build": "cross-env VITE_BUILD_EVENT=true pnpm tsc && pnpm vite && pnpm typedoc",
|
|
14
|
+
"copydist": "cp -r dist/sdk ../demo/public/",
|
|
15
|
+
"vite": "vite build --config ./config/vite.config.ts && shx cp ./src/types/DaoPaaS.d.ts ./dist",
|
|
16
|
+
"typedoc": "npx typedoc --tsconfig ./doc.tsconfig.json",
|
|
17
|
+
"workNameSpaceToFix": "node ./config/workNameSpaceToFix.js",
|
|
18
|
+
"tsc": "tsc -p ./tsconfig.json --isolatedModules false",
|
|
19
|
+
"test": "jest --coverage",
|
|
20
|
+
"prepublish": "pnpm build",
|
|
21
|
+
"publish": "npm publish --access public"
|
|
22
|
+
},
|
|
11
23
|
"devDependencies": {
|
|
12
24
|
"@codemirror/autocomplete": "^6.0.0",
|
|
13
25
|
"@codemirror/collab": "^6.0.0",
|
|
@@ -130,16 +142,5 @@
|
|
|
130
142
|
"dependencies": {
|
|
131
143
|
"lodash.clonedeep": "^4.5.0",
|
|
132
144
|
"lodash.isequal": "^4.5.0"
|
|
133
|
-
},
|
|
134
|
-
"scripts": {
|
|
135
|
-
"prebuild": "rimraf dist",
|
|
136
|
-
"build": "cross-env VITE_BUILD_EVENT=true pnpm tsc && pnpm vite && pnpm typedoc",
|
|
137
|
-
"copydist": "cp -r dist/sdk ../demo/public/",
|
|
138
|
-
"vite": "vite build --config ./config/vite.config.ts && shx cp ./src/types/DaoPaaS.d.ts ./dist",
|
|
139
|
-
"typedoc": "npx typedoc --tsconfig ./doc.tsconfig.json",
|
|
140
|
-
"workNameSpaceToFix": "node ./config/workNameSpaceToFix.js",
|
|
141
|
-
"tsc": "tsc -p ./tsconfig.json --isolatedModules false",
|
|
142
|
-
"test": "jest --coverage",
|
|
143
|
-
"prepublish": "pnpm build"
|
|
144
145
|
}
|
|
145
|
-
}
|
|
146
|
+
}
|