Spaces:
Sleeping
Sleeping
T1ckbase
commited on
Commit
·
f6b0e38
1
Parent(s):
6fd7a37
test
Browse files
deno.json
CHANGED
@@ -1,6 +1,47 @@
|
|
1 |
{
|
2 |
"imports": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
},
|
|
|
4 |
"fmt": {
|
5 |
"indentWidth": 2,
|
6 |
"lineWidth": 69420,
|
|
|
1 |
{
|
2 |
"imports": {
|
3 |
+
"@std/assert": "jsr:@std/assert",
|
4 |
+
"@std/async": "jsr:@std/async",
|
5 |
+
"@std/bytes": "jsr:@std/bytes",
|
6 |
+
"@std/cache": "jsr:@std/cache",
|
7 |
+
"@std/cbor": "jsr:@std/cbor",
|
8 |
+
"@std/cli": "jsr:@std/cli",
|
9 |
+
"@std/collections": "jsr:@std/collections",
|
10 |
+
"@std/crypto": "jsr:@std/crypto",
|
11 |
+
"@std/csv": "jsr:@std/csv",
|
12 |
+
"@std/data-structures": "@std/data-structures",
|
13 |
+
"@std/datetime": "@std/datetime",
|
14 |
+
"@std/dotenv": "@std/dotenv",
|
15 |
+
"@std/encoding": "@std/encoding",
|
16 |
+
"@std/expect": "@std/expect",
|
17 |
+
"@std/fmt": "@std/fmt",
|
18 |
+
"@std/front-matter": "@std/front-matter",
|
19 |
+
"@std/fs": "jsr:@std/fs",
|
20 |
+
"@std/html": "@std/html",
|
21 |
+
"@std/http": "@std/http",
|
22 |
+
"@std/ini": "@std/ini",
|
23 |
+
"@std/internal": "@std/internal",
|
24 |
+
"@std/io": "@std/io",
|
25 |
+
"@std/json": "@std/json",
|
26 |
+
"@std/jsonc": "@std/jsonc",
|
27 |
+
"@std/log": "@std/log",
|
28 |
+
"@std/media-types": "@std/media-types",
|
29 |
+
"@std/msgpack": "@std/msgpack",
|
30 |
+
"@std/net": "@std/net",
|
31 |
+
"@std/path": "@std/path",
|
32 |
+
"@std/random": "@std/random",
|
33 |
+
"@std/regexp": "@std/regexp",
|
34 |
+
"@std/semver": "@std/semver",
|
35 |
+
"@std/streams": "@std/streams",
|
36 |
+
"@std/tar": "@std/tar",
|
37 |
+
"@std/testing": "@std/testing",
|
38 |
+
"@std/toml": "@std/toml",
|
39 |
+
"@std/ulid": "@std/ulid",
|
40 |
+
"@std/uuid": "@std/uuid",
|
41 |
+
"@std/webgpu": "@std/webgpu",
|
42 |
+
"@std/yaml": "@std/yaml"
|
43 |
},
|
44 |
+
"lock": false,
|
45 |
"fmt": {
|
46 |
"indentWidth": 2,
|
47 |
"lineWidth": 69420,
|
main.ts
CHANGED
@@ -1,3 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
Deno.writeTextFileSync('test.txt', 'hello world');
|
2 |
|
3 |
Deno.serve({ port: 7860 }, (_req) => {
|
|
|
1 |
+
import '@std/assert';
|
2 |
+
import '@std/async';
|
3 |
+
import '@std/bytes';
|
4 |
+
import '@std/cache';
|
5 |
+
import '@std/cbor';
|
6 |
+
import '@std/cli';
|
7 |
+
import '@std/collections';
|
8 |
+
import '@std/crypto';
|
9 |
+
import '@std/csv';
|
10 |
+
import '@std/data-structures';
|
11 |
+
import '@std/datetime';
|
12 |
+
import '@std/dotenv';
|
13 |
+
import '@std/encoding';
|
14 |
+
import '@std/expect';
|
15 |
+
import '@std/fmt';
|
16 |
+
import '@std/front-matter';
|
17 |
+
import '@std/fs';
|
18 |
+
import '@std/html';
|
19 |
+
import '@std/http';
|
20 |
+
import '@std/ini';
|
21 |
+
import '@std/internal';
|
22 |
+
import '@std/io';
|
23 |
+
import '@std/json';
|
24 |
+
import '@std/jsonc';
|
25 |
+
import '@std/log';
|
26 |
+
import '@std/media-types';
|
27 |
+
import '@std/msgpack';
|
28 |
+
import '@std/net';
|
29 |
+
import '@std/path';
|
30 |
+
import '@std/random';
|
31 |
+
import '@std/regexp';
|
32 |
+
import '@std/semver';
|
33 |
+
import '@std/streams';
|
34 |
+
import '@std/tar';
|
35 |
+
import '@std/testing';
|
36 |
+
import '@std/toml';
|
37 |
+
import '@std/ulid';
|
38 |
+
import '@std/uuid';
|
39 |
+
import '@std/webgpu';
|
40 |
+
import '@std/yaml';
|
41 |
+
|
42 |
Deno.writeTextFileSync('test.txt', 'hello world');
|
43 |
|
44 |
Deno.serve({ port: 7860 }, (_req) => {
|