-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.17 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
53
54
55
56
{
"name": "@easylogic/magica",
"version": "0.0.2",
"description": "Magic Method Utility Library",
"type": "module",
"main": "./src/index.ts",
"types": "./@types/index.d.ts",
"module": "./dist/magica.es.js",
"directories": {
".": "./src"
},
"files": [
"@types",
"samples",
"src",
"dist"
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./dist/magica.umd.js"
}
},
"dependencies": {},
"devDependencies": {
"release-it": "^14.12.5",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-plugin-dts": "^0.9.9",
"vitest": "^0.5.5"
},
"scripts": {
"build": "vite build --config vite.dist.config.js",
"test": "vitest",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json",
"release": "release-it *",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easylogic/magica.git"
},
"keywords": [
"magica",
"easylogic",
"method",
"utility",
"library"
],
"author": "easylogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/easylogic/magica/issues"
},
"homepage": "https://github.com/easylogic/magica"
}