-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"private": true,
"name": "backbone-ajax-retry",
"version": "1.2.1",
"description": "",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"files": [
"dist/",
"types/"
],
"exports": {
".": [
{
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/backbone": "^1.4.22",
"@types/eslint__js": "^8.42.3",
"@types/jquery": "^3.5.31",
"backbone": "^1.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jquery": "^3.7.1",
"msw": "^2.4.9",
"prettier": "^3.3.3",
"rollup": "^4.22.0",
"rollup-plugin-typescript2": "^0.36.0",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "~5.5.4",
"typescript-eslint": "^8.6.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"@types/backbone": "^1.4.22",
"@types/jquery": "^3.5.31",
"backbone": "^1.6.0",
"jquery": "^3.7.1"
},
"scripts": {
"test": "bash run test",
"prepublishOnly": "bash run prepublish-only"
}
}