-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
57
58
{
"name": "package-template",
"version": "0.1.1",
"description": "Project template to bootstrap a new TypeScript library",
"repository": {
"type": "git",
"url": "https://github.com/nurodev/package-template.git"
},
"homepage": "https://github.com/nurodev/package-template",
"bugs": "https://github.com/nurodev/package-template/issues",
"author": {
"name": "nurodev",
"email": "[email protected]",
"url": "https://nuro.dev"
},
"keywords": [
"typescript"
],
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest watch --ui",
"test:watch": "vitest watch"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.2.3",
"@vitest/ui": "^0.31.1",
"c8": "^7.13.0",
"minifaker": "^1.34.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
}
}