-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.02 KB
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
73
74
75
76
77
78
{
"version": "0.1.27",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"dist/types"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"publish:npm": "npm publish --access public",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"useTabs": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"name": "@elsa-health/model-runtime",
"author": "ally",
"module": "dist/model-runtime.esm.js",
"size-limit": [
{
"path": "dist/model-runtime.cjs.production.min.js",
"limit": "90 KB"
},
{
"path": "dist/model-runtime.esm.js",
"limit": "90 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.5",
"@stdlib/types": "^0.0.14",
"coveralls": "^3.1.1",
"fast-check": "^2.23.2",
"husky": "^7.0.4",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "4.5.5"
},
"dependencies": {
"@stdlib/stats": "^0.0.13"
},
"description": "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"height: 100px; width: 100px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"> <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.871 4A17.926 17.926 0 003 12c0 2.874.673 5.59 1.871 8m14.13 0a17.926 17.926 0 001.87-8c0-2.874-.673-5.59-1.87-8M9 9h1.246a1 1 0 01.961.725l1.586 5.55a1 1 0 00.961.725H15m1-7h-.08a2 2 0 00-1.519.698L9.6 15.302A2 2 0 018.08 16H8\" /> </svg>",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elsa-Health/model-runtime.git"
},
"bugs": {
"url": "https://github.com/Elsa-Health/model-runtime/issues"
},
"homepage": "https://github.com/Elsa-Health/model-runtime#readme"
}