-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 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
47
48
49
50
51
52
53
{
"name": "@wacky-idea/user-agent",
"version": "1.0.0",
"author": "Aomd <g00665@163.com>",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"umd:main": "dist/umd/index.js",
"typings": "src/index.ts",
"homepage": "https://github.com/wacky-idea/UserAgent#readme",
"description": "通过解析 UA 来得到用户终端信息",
"directories": {
"src": "src",
"test": "test"
},
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wacky-idea/UserAgent.git"
},
"keywords": [
"user-agent",
"ua",
"浏览器信息解析"
],
"bugs": {
"url": "https://github.com/wacky-idea/UserAgent/issues"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"test": "npx jest"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.7",
"jest": "^29",
"jest-junit": "^16.0.0",
"rollup": "^3.25.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}