-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "@yzfe/lib-is",
"version": "0.0.0",
"title": "lib/is",
"description": "常用环境判断",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"author": "vfasky<[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MMF-FE/lib-is.git"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "rollup -c",
"docs": "vuepress dev docs",
"docs:build": "NODE_ENV=production vuepress build docs",
"test": "ts-node --transpile-only --skip-project test"
},
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"@yzfe-private/vuepress-plugin-yzfe-build-docs": "^0.0.1",
"node-fetch": "^2.6.1",
"rollup": "^2.39.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"vuepress": "^1.8.2"
}
}