-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "@hyperplay/utils",
"version": "0.3.6",
"description": "",
"main": "index.js",
"scripts": {
"codecheck": "tsc --noEmit",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "jest",
"coverage": "nyc npm run test",
"build": "vite build",
"lint": "export ESLINT_USE_FLAT_CONFIG=false && eslint --ext .js,.jsx,.ts,.tsx,.json,.mdx ./src"
},
"files": [
"dist/*",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"types": "dist/index.d.ts",
"keywords": [],
"author": "Brett Cleary",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup-plugin-node-externals": "^5.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.8.3"
},
"dependencies": {
"bignumber.js": "^9.1.2"
}
}