forked from configu/configu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
53
54
55
56
57
58
59
60
{
"name": "@configu/browser",
"version": "0.0.0",
"license": "Apache-2.0",
"description": "configu browser sdk",
"author": "Configu",
"browserslist": [
"defaults and supports es6-module"
],
"main": "./build/index.cjs",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"exports": {
".": {
"require": "./build/index.cjs",
"import": "./build/index.mjs",
"types": "./build/index.d.ts"
}
},
"files": [
"/build",
"/dist"
],
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/configu/configu",
"directory": "ts/packages/browser"
},
"bugs": {
"url": "https://github.com/configu/configu/issues",
"email": "[email protected]"
},
"homepage": "https://configu.com",
"keywords": [
"cfgu",
"configu",
"configu-sdk",
"configu-browser-sdk"
],
"scripts": {
"build:clean": "shx rm -rf build dist tsconfig.tsbuildinfo",
"build:tsc": "tsc --build --verbose",
"build:esbuild": "node bundle.js",
"build": "npm run build:clean && npm run build:tsc && npm run build:esbuild"
},
"dependencies": {
"@configu/ts": "*",
"axios": "^1.4.0",
"browser-fs-access": "^0.34.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.197",
"esbuild-plugin-umd-wrapper": "^1.0.7"
}
}