create-dubhe 0.1.5 → 0.1.6
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/package.json +1 -1
- package/template/101/aptos-template/_gitignore +43 -0
- package/template/101/initia-template/_gitignore +45 -0
- package/template/101/movement-template/_gitignore +43 -0
- package/template/101/rooch-template/_gitignore +43 -0
- package/template/101/sui-template/_gitignore +48 -0
- package/template/contract/sui-template/_gitignore +42 -0
- package/template/nextjs/aptos-template/_gitignore +44 -0
- package/template/nextjs/sui-template/_gitignore +48 -0
package/package.json
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
build/
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
|
|
30
|
+
# local env files
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.development.local
|
|
34
|
+
.env.test.local
|
|
35
|
+
.env.production.local
|
|
36
|
+
|
|
37
|
+
# vercel
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
localnode.nohup.out
|
|
41
|
+
|
|
42
|
+
contracts/dubhe-framework
|
|
43
|
+
src/chain/key.ts
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
build/
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
|
|
30
|
+
# local env files
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.development.local
|
|
34
|
+
.env.test.local
|
|
35
|
+
.env.production.local
|
|
36
|
+
|
|
37
|
+
# vercel
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
localnode.nohup.out
|
|
41
|
+
|
|
42
|
+
contracts/dubhe-framework
|
|
43
|
+
src/chain/key.ts
|
|
44
|
+
|
|
45
|
+
.local-initia/
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
build/
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
|
|
30
|
+
# local env files
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.development.local
|
|
34
|
+
.env.test.local
|
|
35
|
+
.env.production.local
|
|
36
|
+
|
|
37
|
+
# vercel
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
localnode.nohup.out
|
|
41
|
+
|
|
42
|
+
contracts/dubhe-framework
|
|
43
|
+
src/chain/key.ts
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
build/
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
|
|
30
|
+
# local env files
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.development.local
|
|
34
|
+
.env.test.local
|
|
35
|
+
.env.production.local
|
|
36
|
+
|
|
37
|
+
# vercel
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
localnode.nohup.out
|
|
41
|
+
|
|
42
|
+
contracts/dubhe-framework
|
|
43
|
+
src/chain/key.ts
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
/node_modules
|
|
5
|
+
/.pnp
|
|
6
|
+
.pnp.*
|
|
7
|
+
.yarn/*
|
|
8
|
+
!.yarn/patches
|
|
9
|
+
!.yarn/plugins
|
|
10
|
+
!.yarn/releases
|
|
11
|
+
!.yarn/versions
|
|
12
|
+
|
|
13
|
+
# testing
|
|
14
|
+
/coverage
|
|
15
|
+
|
|
16
|
+
# next.js
|
|
17
|
+
/.next/
|
|
18
|
+
/out/
|
|
19
|
+
|
|
20
|
+
# production
|
|
21
|
+
/build
|
|
22
|
+
|
|
23
|
+
# misc
|
|
24
|
+
.DS_Store
|
|
25
|
+
*.pem
|
|
26
|
+
|
|
27
|
+
# debug
|
|
28
|
+
npm-debug.log*
|
|
29
|
+
yarn-debug.log*
|
|
30
|
+
yarn-error.log*
|
|
31
|
+
.pnpm-debug.log*
|
|
32
|
+
|
|
33
|
+
# env files (can opt-in for committing if needed)
|
|
34
|
+
.env*
|
|
35
|
+
|
|
36
|
+
# vercel
|
|
37
|
+
.vercel
|
|
38
|
+
|
|
39
|
+
# typescript
|
|
40
|
+
*.tsbuildinfo
|
|
41
|
+
next-env.d.ts
|
|
42
|
+
|
|
43
|
+
# dubhe
|
|
44
|
+
contracts/dubhe-framework/.history
|
|
45
|
+
contracts/dubhe-framework/Move.lock
|
|
46
|
+
**/build/
|
|
47
|
+
src/chain/key.ts
|
|
48
|
+
indexer.db
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
build/
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
yarn.lock
|
|
30
|
+
|
|
31
|
+
# local env files
|
|
32
|
+
.env
|
|
33
|
+
.env.local
|
|
34
|
+
.env.development.local
|
|
35
|
+
.env.test.local
|
|
36
|
+
.env.production.local
|
|
37
|
+
|
|
38
|
+
# vercel
|
|
39
|
+
.vercel
|
|
40
|
+
|
|
41
|
+
contracts/dubhe-framework/.history
|
|
42
|
+
contracts/dubhe-framework/Move.lock
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
#IDE
|
|
4
|
+
/.idea
|
|
5
|
+
|
|
6
|
+
# dependencies
|
|
7
|
+
/node_modules
|
|
8
|
+
/.pnp
|
|
9
|
+
.pnp.js
|
|
10
|
+
|
|
11
|
+
# testing
|
|
12
|
+
/coverage
|
|
13
|
+
|
|
14
|
+
# next.js
|
|
15
|
+
/.next/
|
|
16
|
+
/out/
|
|
17
|
+
|
|
18
|
+
# production
|
|
19
|
+
/build
|
|
20
|
+
|
|
21
|
+
# misc
|
|
22
|
+
.DS_Store
|
|
23
|
+
*.pem
|
|
24
|
+
|
|
25
|
+
# debug
|
|
26
|
+
npm-debug.log*
|
|
27
|
+
yarn-debug.log*
|
|
28
|
+
yarn-error.log*
|
|
29
|
+
|
|
30
|
+
# local env files
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.development.local
|
|
34
|
+
.env.test.local
|
|
35
|
+
.env.production.local
|
|
36
|
+
|
|
37
|
+
# vercel
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
src/chain/key.ts
|
|
41
|
+
|
|
42
|
+
localnode.nohup.out
|
|
43
|
+
contracts/counter/build
|
|
44
|
+
contracts/counter/.history
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
/node_modules
|
|
5
|
+
/.pnp
|
|
6
|
+
.pnp.*
|
|
7
|
+
.yarn/*
|
|
8
|
+
!.yarn/patches
|
|
9
|
+
!.yarn/plugins
|
|
10
|
+
!.yarn/releases
|
|
11
|
+
!.yarn/versions
|
|
12
|
+
|
|
13
|
+
# testing
|
|
14
|
+
/coverage
|
|
15
|
+
|
|
16
|
+
# next.js
|
|
17
|
+
/.next/
|
|
18
|
+
/out/
|
|
19
|
+
|
|
20
|
+
# production
|
|
21
|
+
/build
|
|
22
|
+
|
|
23
|
+
# misc
|
|
24
|
+
.DS_Store
|
|
25
|
+
*.pem
|
|
26
|
+
|
|
27
|
+
# debug
|
|
28
|
+
npm-debug.log*
|
|
29
|
+
yarn-debug.log*
|
|
30
|
+
yarn-error.log*
|
|
31
|
+
.pnpm-debug.log*
|
|
32
|
+
|
|
33
|
+
# env files (can opt-in for committing if needed)
|
|
34
|
+
.env*
|
|
35
|
+
|
|
36
|
+
# vercel
|
|
37
|
+
.vercel
|
|
38
|
+
|
|
39
|
+
# typescript
|
|
40
|
+
*.tsbuildinfo
|
|
41
|
+
next-env.d.ts
|
|
42
|
+
|
|
43
|
+
# dubhe
|
|
44
|
+
contracts/dubhe-framework/.history
|
|
45
|
+
contracts/dubhe-framework/Move.lock
|
|
46
|
+
**/build/
|
|
47
|
+
src/chain/key.ts
|
|
48
|
+
indexer.db
|