-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "apyhub",
"version": "0.1.12",
"description": "",
"main": "dist/index.js",
"module": "dist/apyhub.js.esm.js",
"browser": "",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"version": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts && git add docs",
"release": "np"
},
"repository": "https://github.com/apyhub/apyhub.js",
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": "",
"homepage": "",
"dependencies": {
"cross-fetch": "^3.1.5",
"form-data": "^4.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"husky": "^8.0.0",
"np": "^7.6.2",
"size-limit": "^8.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"peerDependencies": {},
"optionalDependencies": {},
"bundledDependencies": [],
"config": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"engines": {
"node": ">=10"
},
"size-limit": [
{
"path": "dist/apyhub.js.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/apyhub.js.esm.js",
"limit": "10 KB"
}
]
}