-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1011 Bytes
/
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
{
"name": "@hyperplay/browser-sdk",
"version": "0.0.5",
"description": "",
"main": "index.js",
"scripts": {
"codecheck": "tsc --noEmit",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "hardhat compile && hardhat test",
"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": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3"
}
}