-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 922 Bytes
/
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
{
"name": "concerns",
"description": "That you should separate",
"version": "1.3.2",
"license": "MIT",
"author": {
"name": "3Shain",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/3Shain/concerns"
},
"type": "module",
"module": "./src/index.js",
"typings": "./src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"test": "vitest"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6",
"multishot-generator": "^1.1.2"
},
"files": [
"src/index.js",
"src/index.d.ts",
"package.json",
"README.md",
"LICENSE"
],
"peerDependencies": {
"multishot-generator": "^1.1.2"
}
}