-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "@lockevn/gachchan",
"version": "7.0.1",
"releasenote": "Fix the way we import lodash. Remove deprecated getCurrentGMT7TimeString(). Better Comment. UTC Util. ContinuousExecuteBySetTimeout() with new argument executeImmediately",
"description": "Change to TypeScript from v6. Share lib for common helper functions, work in node and browser",
"author": "lockevn",
"license": "See LICENSE",
"keywords": [
"StockvnHelper from xc-api",
"CommonHelper from xc-api",
"CommonHelper from xcap-portal",
"node",
"browser",
"lib",
"util",
"lockevn"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/",
"test/",
"index.js",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast --minify --dts",
"test": "vitest run",
"testwatch": "vitest watch",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"@types/lodash": "^4.17.4",
"prettier": "2.8.4",
"tsup": "6.6.3",
"typescript": "4.9.5",
"vitest": "^2.1.8"
},
"peerDependencies": {
"axios": ">0.21.0",
"decimal.js": "^10.2.1",
"lodash": "^4.17.21"
}
}