saro-dat 0.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.
package/.editorconfig ADDED
@@ -0,0 +1,10 @@
1
+ root = true
2
+
3
+ [*]
4
+ end_of_line = lf
5
+ insert_final_newline = true
6
+
7
+ [*.{js,json,yml}]
8
+ charset = utf-8
9
+ indent_style = space
10
+ indent_size = 2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 SARO Lab
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/PUBLISH.md ADDED
@@ -0,0 +1,22 @@
1
+ # build & publish
2
+
3
+ ## build
4
+ ``` shell
5
+ npm install
6
+ ```
7
+
8
+ ``` shell
9
+ npm run build
10
+ ```
11
+
12
+ ## login
13
+ ``` shell
14
+ npm login
15
+ ```
16
+
17
+ ## publish
18
+ 1. build
19
+ 2. update next version in README.md and commit
20
+ ``` shell
21
+ npm publish
22
+ ```
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # DAT
2
+ - Distributed Access Token
3
+
4
+ ## Package
5
+ - https://www.npmjs.com/package/saro-dat
6
+
7
+ ```
8
+ "saro-dat": "not-yet"
9
+ ```
10
+
11
+ ## Document
12
+ - Class
13
+ - Date Format
14
+ - Locate
15
+ - SingleLock
16
+ - [Scroll Loader](./document/scroll-loader.md)
17
+ - Instance
18
+ - cookies
19
+ - ko
20
+
21
+
22
+ ## Project Info
23
+ - typescript
24
+ - yarn 3.x
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "saro-dat",
3
+ "version": "0.0.0",
4
+ "description": "Distributed Access Token",
5
+ "keywords": [
6
+ "dat",
7
+ "distributed",
8
+ "access",
9
+ "token"
10
+ ],
11
+ "homepage": "https://github.com/saro-lab/dat-npm#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/saro-lab/dat-npm/issues"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/saro-lab/dat-npm.git"
18
+ },
19
+ "license": "MIT",
20
+ "author": "marker",
21
+ "type": "commonjs",
22
+ "main": "index.js",
23
+ "scripts": {
24
+ "build": "tsc",
25
+ "test": "echo \"Error: no test specified\" && exit 1"
26
+ },
27
+ "devDependencies": {
28
+ "typescript": "^6.0.3"
29
+ }
30
+ }
package/src/index.ts ADDED
File without changes
package/tsconfig.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES6",
4
+ "allowJs": true,
5
+ "declaration": true,
6
+ "strict": true,
7
+ "outDir": "dist",
8
+ "rootDir": "src",
9
+ },
10
+ "include": ["src/**/*"]
11
+ }