-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "app-ua-cn",
"version": "0.0.7",
"description": "",
"main": "index.js",
"module": "index.mjs",
"browser": "index.global.js",
"unpkg": "index.global.js",
"types": "index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs,iife --minify --dts-resolve --clean --sourcemap --out-dir dist",
"patch": "npm version patch && npm run build && npm publish",
"minor": "npm version minor && npm run build && npm publish",
"major": "npm version major && npm run build && npm publish"
},
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/index.global.js"
},
"./dist/*": "./dist/*"
},
"keywords": [
"app",
"ua",
"cn"
],
"files": [
"dist"
],
"author": "gsy",
"repository": {
"type": "git",
"url": "https://github.com/guoshuangyang/app-ua-cn"
},
"license": "MIT",
"devDependencies": {
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}