-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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
{
"name": "@hec9527/jsonp",
"version": "1.0.0-alpha.0",
"description": "A simple JSONP implementation base on typescript build by rollup",
"main": "/lib/index.js",
"type": "module",
"scripts": {
"build": "rimraf ./dist && rollup -c rollup.config.js",
"pub": "npm publish --registry https://registry.npmjs.org/",
"prepub": "npm run build"
},
"keywords": [
"jsonp",
"es5"
],
"files": [
"./dist/"
],
"author": {
"email": "hec9527@foxmail.com",
"name": "hec9527",
"url": "http://hec9527.top"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/hec9527/jsonp",
"repository": {
"type": "git",
"url": "https://github.com/hec9527/jsonp"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"publishConfig": {
"access": "public"
}
}