-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.31 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
{
"version": "0.1.2",
"license": "MIT",
"engines": {
"node": ">=10"
},
"files": [
"dist/*"
],
"source": "./src/index.ts",
"module": "dist/index.js",
"main": "dist/index.cjs",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && microbundle",
"test": "NODE_ENV=test jest",
"dev": "microbundle watch",
"size": "size-limit"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "loot-sdk",
"author": "shahruz",
"size-limit": [
{
"path": "dist/index.modern.js",
"limit": "50 KB"
},
{
"path": "dist/index.js",
"limit": "50 KB"
},
{
"path": "dist/index.umd.js",
"limit": "50 KB"
}
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@size-limit/preset-small-lib": "^5.0.3",
"husky": "^7.0.2",
"jest": "^27.1.0",
"microbundle": "^0.13.3",
"mocha": "^9.1.0",
"size-limit": "^5.0.3",
"typescript": "^4.4.2"
},
"dependencies": {
"graphql": "^15.5.1",
"graphql-request": "^3.5.0"
}
}