-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "smartsupp-widget",
"version": "0.2.1",
"description": "Smartsupp Widget SDK",
"repository": "git://github.com/smartsupp/smartsupp-sdk-widget.git",
"homepage": "https://github.com/smartsupp/smartsupp-sdk-widget#readme",
"author": "Smartsupp",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"domready": "^1.0.8"
},
"devDependencies": {
"@types/domready": "^1.0.0",
"@types/node": "^14.14.33",
"npm-run-all": "^4.1.5",
"rollup": "^2.41.1",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "run-s build:es5 build:esm build:bundle",
"build:es5": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:bundle": "rollup --config",
"watch": "tsc --watch",
"clean": "rm -rf lib esm",
"prepublishOnly": "npm run build"
}
}