-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 978 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
{
"name": "@moimob/common",
"private": false,
"version": "0.1.0",
"type": "module",
"author": "Anton Gustafsson",
"repository": {
"type": "git",
"url": "git+https://github.com/MOIMOB/common.git"
},
"keywords": [
"common",
"MOIMOB"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MOIMOB/common/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc && vite build && tsc -d --declarationDir dist/types --declarationMap --emitDeclarationOnly"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}