-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.03 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
{
"type": "module",
"version": "1.2.1",
"name": "tob-ui-core",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"description": "tob ui组件库核心逻辑库",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/tob-ui-core.git"
},
"scripts": {
"test": "jest",
"build": "unbuild",
"build:stub": "unbuild --stub",
"test:watch": "jest --watchAll",
"prepublish": "npm version patch"
},
"files": [
"dist",
"core",
"test",
"README.md"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"keywords": [
"core",
"vuejs",
"uniapp",
"tob-ui"
],
"license": "MIT",
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"unbuild": "^0.6.3"
}
}