faasjs 0.0.2-beta.99 → 0.0.3-beta.2
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/README.md +1 -7
- package/package.json +18 -4
package/README.md
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
# FaasJS
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
An Atomic Application Framework based on Typescript
|
|
4
4
|
|
|
5
5
|
https://faasjs.com/
|
|
6
|
-
|
|
7
|
-
## Features
|
|
8
|
-
|
|
9
|
-
- Develop like a monolithic application
|
|
10
|
-
- Support monolithic mode for develop and no serverless enviroment
|
|
11
|
-
- Work with Nuxt.js like a full-stack application framework
|
package/package.json
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faasjs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [],
|
|
6
|
+
"homepage": "https://faasjs.com",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/faasjs/faasjs.git",
|
|
10
|
+
"directory": "packages/faasjs"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/faasjs/faasjs/issues"
|
|
14
|
+
},
|
|
15
|
+
"funding": "https://github.com/sponsors/faasjs",
|
|
6
16
|
"dependencies": {
|
|
7
|
-
"@faasjs/cli": "^0.0.
|
|
8
|
-
"@faasjs/http": "^0.0.
|
|
17
|
+
"@faasjs/cli": "^0.0.3-beta.2",
|
|
18
|
+
"@faasjs/http": "^0.0.3-beta.2",
|
|
19
|
+
"@faasjs/types": "^0.0.3-beta.2"
|
|
9
20
|
},
|
|
10
|
-
"
|
|
21
|
+
"engines": {
|
|
22
|
+
"npm": ">=8.0.0",
|
|
23
|
+
"node": ">=16.0.0"
|
|
24
|
+
}
|
|
11
25
|
}
|