-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "crisp-sdk-web",
"version": "1.0.25",
"description": "Include Crisp chat widget inside web frameworks.",
"keywords": [
"crisp",
"chat"
],
"author": "Crisp IM SAS",
"homepage": "https://github.com/crisp-im/crisp-sdk-web",
"license": "MIT",
"main": "dist/crisp.umd.js",
"module": "dist/crisp.esm.js",
"types": "dist/crisp.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crisp-im/crisp-sdk-web.git"
},
"scripts": {
"build": "rm -r -f dist && rollup -c",
"test": "npm run lint",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
"typecheck": "tsc -p ./tsconfig.json",
"version": "yarn version-file && GENERATE_SNIPPET=true yarn build",
"version-file": "node -p \"'export const VERSION = \\'' + require('./package.json').version + '\\';'\" > src/version.ts"
},
"bugs": {
"url": "https://github.com/crisp-im/crisp-sdk-web/issues"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"files": [
"src",
"dist"
]
}