-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "smartlook-client",
"version": "10.0.0",
"description": "Official Smartlook client for easy frontend integration.",
"main": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/**"
],
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/esm/index.d.ts"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json && mv dist/cjs/index.js dist/cjs/index.cjs",
"build:esm": "tsc -p tsconfig.json && mv dist/esm/index.js dist/esm/index.mjs",
"build": "yarn build:esm && yarn build:cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartlook/smartlook-client.git"
},
"keywords": [
"smartlook",
"smartlook-client"
],
"author": {
"name": "David Kadlec",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/smartlook/smartlook-client/issues"
},
"homepage": "https://github.com/smartlook/smartlook-client#readme",
"devDependencies": {
"typescript": "4.6.2"
}
}