@standardnotes/filesafe-bar 2.1.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.md +0 -0
- package/README.md +3 -0
- package/dist/dist.css +1 -0
- package/dist/dist.js +2 -0
- package/dist/dist.js.LICENSE.txt +38 -0
- package/dist/dist.min.js +2 -0
- package/dist/dist.min.js.LICENSE.txt +38 -0
- package/dist/filesafe-js/EncryptionWorker.js +2 -0
- package/dist/filesafe-js/EncryptionWorker.js.LICENSE.txt +5 -0
- package/dist/index.html +11 -0
- package/dist/index.min.html +10 -0
- package/dist/main.css +7 -0
- package/package.json +54 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<link rel="stylesheet" type="text/css" href="dist.css">
|
|
3
|
+
<title>FileSafe</title>
|
|
4
|
+
<body class="sn-component">
|
|
5
|
+
<script>
|
|
6
|
+
window.default_fs_relay_server_url = window.default_fs_relay_server_url || "https://filesafe.standardnotes.com";
|
|
7
|
+
</script>
|
|
8
|
+
<script type="text/javascript" src="dist.min.js"></script>
|
|
9
|
+
</body>
|
|
10
|
+
</html>
|
package/dist/main.css
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@standardnotes/filesafe-bar",
|
|
3
|
+
"version": "2.1.1",
|
|
4
|
+
"author": "Standard Notes Retired",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/dist.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"lint": "eslint --cache --ignore-path .gitignore --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
|
|
14
|
+
"test": "npm run lint",
|
|
15
|
+
"build": "webpack",
|
|
16
|
+
"start": "webpack-dev-server --config webpack.config.js",
|
|
17
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
|
|
18
|
+
},
|
|
19
|
+
"sn": {
|
|
20
|
+
"name": "FileSafe Legacy",
|
|
21
|
+
"content_type": "SN|Component",
|
|
22
|
+
"area": "editor-stack",
|
|
23
|
+
"main": "dist/index.html"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@babel/core": "^7.17.2",
|
|
27
|
+
"@babel/preset-env": "^7.16.11",
|
|
28
|
+
"@babel/preset-react": "^7.16.7",
|
|
29
|
+
"@babel/preset-stage-0": "^7.8.3",
|
|
30
|
+
"@babel/runtime": "^7.17.2",
|
|
31
|
+
"babel-cli": "^6.26.0",
|
|
32
|
+
"babel-loader": "^8.2.3",
|
|
33
|
+
"babel-register": "^6.26.0",
|
|
34
|
+
"compare-versions": "^4.1.3",
|
|
35
|
+
"copy-webpack-plugin": "10.2.4",
|
|
36
|
+
"css-loader": "~6.6.0",
|
|
37
|
+
"filesafe-embed": "standardnotes/filesafe-embed#309a4282959ffe08ebb8d0e23dbddb60adbd09ce",
|
|
38
|
+
"filesafe-js": "1.0.5",
|
|
39
|
+
"husky": "^7.0.4",
|
|
40
|
+
"mini-css-extract-plugin": "^2.4.3",
|
|
41
|
+
"node-sass": "^7.0.1",
|
|
42
|
+
"open-browser-webpack-plugin": "0.0.5",
|
|
43
|
+
"react": "17.0.x",
|
|
44
|
+
"react-dom": "17.0.x",
|
|
45
|
+
"sass-loader": "^12.4.0",
|
|
46
|
+
"sn-components-api": "1.2.8",
|
|
47
|
+
"style-loader": "~3.3.1",
|
|
48
|
+
"webpack": "^5.68.0",
|
|
49
|
+
"webpack-cli": "^4.9.2",
|
|
50
|
+
"webpack-dev-server": "^4.7.4",
|
|
51
|
+
"worker-loader": "^3.0.8"
|
|
52
|
+
},
|
|
53
|
+
"gitHead": "d31cb7d0c3571e8e820b1ce0534b6f37868ea733"
|
|
54
|
+
}
|