-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 KB
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
{
"name": "@digitalsamba/embedded-sdk",
"packageManager": "yarn@3.1.0",
"version": "0.0.54",
"license": "BSD-2-Clause",
"scripts": {
"build": "node tools/version && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types && npm run build:update-demo",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"build:update-demo": "rm -f dist/demo/index.js && cp dist/umd/index.js dist/demo/index.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalsamba/embedded-sdk.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"unpkg": "dist/umd/index.js",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"lint-staged": {
"*.{js,ts,md}": [
"eslint --fix",
"prettier --write"
]
},
"ts-standard": {
"project": "./tsconfig.json"
},
"dependencies": {
"@types/events": "^3.0.0",
"@types/node": "^20.5.7",
"events": "^3.3.0"
}
}