-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
58
59
60
61
62
63
64
{
"name": "@shlinkio/shlink-js-sdk",
"description": "A javascript Shlink's REST API client for the browser and node.js",
"homepage": "https://shlink.io",
"author": "Alejandro Celaya <alejandro@alejandrocelaya.com>",
"license": "MIT",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./api-contract": {
"types": "./dist/api-contract.d.ts",
"require": "./dist/api-contract.cjs",
"import": "./dist/api-contract.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"require": "./dist/browser.cjs",
"import": "./dist/browser.js"
},
"./node": {
"types": "./dist/node.d.ts",
"require": "./dist/node.cjs",
"import": "./dist/node.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:ci": "npm run test -- --coverage",
"lint": "eslint src test",
"types": "tsc"
},
"devDependencies": {
"@shlinkio/eslint-config-js-coding-standard": "~3.2.1",
"@stylistic/eslint-plugin": "^2.13.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@total-typescript/shoehorn": "^0.1.2",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^26.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
}
}