-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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": "ajax.js",
"version": "1.0.0",
"description": "a mini ajax library",
"author": "HaoLe Zheng",
"license": "MIT",
"keywords": [
"ajax",
"XMLHttpRequest",
"fetch"
],
"main": "./dist/ajax.min.js",
"module": "./dist/ajax.min.mjs",
"exports": {
"default": "./dist/ajax.min.js",
"import": "./dist/ajax.min.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mumuy/ajax.git"
},
"bugs": {
"url": "https://github.com/mumuy/ajax/issues"
},
"engines": {
"node": ">=20",
"yarn": "please-use-npm",
"npm": ">=8"
},
"files":[
"dist"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^3.29.5"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc"
},
"homepage": "https://passer-by.com/ajax/",
"directories": {}
}