-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "sdk",
"version": "0.0.0",
"description": "Strigo In-App SDK",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node esbuild.js",
"build:extension": "node esbuild-extension.js",
"start": "node esbuild-dev.js -w",
"start:extension": "node esbuild-dev-extension.js -w",
"purge": "node purge-jsdelivr",
"lint": "eslint --cache src",
"lint:ci": "eslint --config .eslintrc.ci.cjs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strigo/sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/strigo/sdk/issues"
},
"homepage": "https://github.com/strigo/sdk#readme",
"dependencies": {
"@interactjs/types": "1.10.14",
"html2canvas": "1.4.1",
"interactjs": "1.10.14",
"lodash.debounce": "^4.0.8",
"split.js": "1.6.5",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/chrome": "^0.0.191",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"axios": "0.26.0",
"create-serve": "1.0.1",
"dotenv": "16.0.0",
"esbuild": "0.14.16",
"esbuild-sass-plugin": "2.2.6",
"eslint": "8.13.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.6.2",
"typescript": "4.6.3"
}
}