-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.63 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": "@farvell/jflow-core",
"version": "3.0.1",
"description": "npm package that exports jflow-core library",
"author": "Farvell",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/farvellmaster/jflow-core.git"
},
"bugs": {
"url": "https://github.com/farvellmaster/jflow-core/issues"
},
"homepage": "https://github.com/farvellmaster/jflow-core#readme",
"main": "package/index.ts",
"typings": "dist/indexjflow.d.ts",
"files": [
"package"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"module": "dist/jflow-core-tsc.esm.js",
"size-limit": [
{
"path": "dist/jflow-core-tsc.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/jflow-core-tsc.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.11.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.27.0",
"husky": "^6.0.0",
"size-limit": "^4.11.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.2"
}
}