This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@cere-ddc-sdk/web-loader",
"type": "module",
"version": "0.2.0",
"description": "The tool to upload HTML apps to the DDC",
"main": "src/index.js",
"repository": "https://github.com/Cerebellum-Network/web-loader",
"author": "Aurélien Nicolas <aurel@cere.io>",
"contributors": [
{
"name": "Aleksey Elyseev",
"email": "a.elyseev@cere.io"
}
],
"exports": {
".": {
"require": "./src/index.cjs",
"import": "./src/index.js",
"default": "./src/index.js"
}
},
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"build:mjs": "NODE_ENV=production webpack",
"build:cjs": "TARGET=cjs NODE_ENV=production webpack",
"build": "npm run types && npm run build:mjs && npm run build:cjs",
"types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"package": "rimraf build && clean-publish --temp-dir build && npm run build"
},
"license": "MIT",
"dependencies": {
"@cere-ddc-sdk/ddc-client": "^1.7.0",
"ejs": "^3.1.8",
"mime": "^3.0.0",
"nanoid": "3.3.3",
"varint": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/ejs": "^3.1.1",
"@types/mime": "^3.0.1",
"@types/node": "^16",
"@types/varint": "^6.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.5",
"clean-publish": "^4.0.1",
"convict": "^6.2.3",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"prettier": {
"printWidth": 120,
"semi": true,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"quoteProps": "as-needed",
"arrowParens": "always"
}
}