-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "iofod-sdk",
"version": "1.0.7",
"main": "./dist/PLUS.cjs",
"module": "./dist/PLUS.mjs",
"types": "./dist/PLUS.d.ts",
"exports": {
".": {
"require": "./dist/PLUS.cjs",
"import": "./dist/PLUS.mjs"
}
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"lint:scripts": "eslint . --ext .ts",
"format:scripts": "prettier . --write",
"format": "npm run format:scripts"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"dts-bundle-generator": "^7.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.5.4",
"vite": "^3.1.8"
}
}