needle-cloud 0.0.1-alpha.22
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/CHANGELOG.md +39 -0
- package/README.md +11 -0
- package/bin/cli.js +3 -0
- package/dist/cloud-cli.esm.js +21879 -0
- package/dist/cloud-cli.esm.js.map +1 -0
- package/dist/needle-cloud.esm.js +2 -0
- package/dist/needle-cloud.esm.js.map +1 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "needle-cloud",
|
|
3
|
+
"version": "0.0.1-alpha.22",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"source": "./src/cli.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"needle-cloud": "./bin/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"default": "./dist/cloud-cli.esm.js"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@caporal/core": "^2.0.7",
|
|
14
|
+
"@web-std/file": "^3.0.3",
|
|
15
|
+
"dotenv": "^16.4.5",
|
|
16
|
+
"node-fetch": "^3.3.2",
|
|
17
|
+
"ora": "^8.0.1"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@needle-tools/cloud-sdk": "file:../needle-share-sdk",
|
|
21
|
+
"microbundle": "^0.15.1"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">= 18"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "microbundle watch --format esm --target node --no-compress",
|
|
28
|
+
"dist": "microbundle --format esm --target node --compress --define api_endpoint=https://cloud-staging.needle.tools/api,cloud_view_baseurl=https://cloud-staging.needle.tools/view,cloud_base_url=https://cloud-staging.needle.tools",
|
|
29
|
+
"deploy": "npm run dist -- --compress && npm publish --access public",
|
|
30
|
+
"deploy:dry": "npm run deploy -- --dry-run"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"bin/",
|
|
34
|
+
"dist/",
|
|
35
|
+
"README.md",
|
|
36
|
+
"CHANGELOG.md",
|
|
37
|
+
"package-lock.json"
|
|
38
|
+
]
|
|
39
|
+
}
|