-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.11 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
52
{
"name": "@acnb/core",
"version": "1.0.8",
"description": "",
"keywords": [
"博客园"
],
"homepage": "https://github.com/acnblogs/core#readme",
"bugs": {
"url": "https://github.com/acnblogs/core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acnblogs/core.git"
},
"license": "MIT",
"author": {
"name": "guangzan",
"url": "https://www.cnblogs.com/guangzan",
"email": "[email protected]"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.es.js",
"module": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build & cp ./src/index.d.ts dist/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"dependencies": {
"@acnb/core": "^1.0.7"
},
"devDependencies": {
"@types/jquery": "^3.5.6",
"@vitest/ui": "^0.5.1",
"jsdom": "^19.0.0",
"vite": "^2.7.7",
"vitest": "^0.5.1"
}
}