-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"version": "0.146.10",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "rules/types/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\" \"src/**/*.jsx\" \"test/**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@jaclight/dbsdk",
"author": "Jac Light",
"module": "dist/dbsdk.esm.js",
"size-limit": [
{
"path": "dist/dbsdk.cjs.production.min.js",
"limit": "20 KB"
},
{
"path": "dist/dbsdk.esm.js",
"limit": "20 KB"
}
],
"mocha": {
"require": [
"babel-core/register",
"babel-polyfill"
],
"file": "./test/support/bootstrap.js",
"checkLeaks": true,
"recursive": true,
"globals": [
"expect"
]
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"colors": "~1.4.0",
"dirty-chai": "2.0.1",
"husky": "^7.0.4",
"lodash": "4.17.21",
"mocha": "^8.4.0",
"perfy": "^1.1.5",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"size-limit": "^7.0.5",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tsd": "^0.17.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/color": "^3.0.6",
"@types/uuid": "^9.0.7",
"clone": "^2.1.2",
"color": "^4.2.3",
"eventemitter2": "^6.4.4",
"hash-it": "^5.0.0",
"json-schema-to-ts": "^3.0.0",
"jsonpath-plus": "^5.0.7",
"lodash.isobjectlike": "^4.0.0",
"tailwind-merge": "^3.0.2",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/JacLight/sdk.git"
},
"packageManager": "yarn@4.0.2"
}