-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.78 KB
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
59
60
61
62
63
64
65
66
67
{
"name": "@embra/template",
"version": "0.1.0",
"description": "Collection of common utilities.",
"repository": {
"type": "git",
"url": "git+https://github.com/embrajs/template.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ci": "biome ci",
"ts-check": "tsc --noEmit",
"ts-watch": "tsc --noEmit -w",
"docs": "typedoc --options typedoc.json && biome format --write --config-path=biome.docs.json --files-ignore-unknown=true docs",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --coverage.reportsDirectory='./docs/coverage'",
"build": "tsdown",
"build:min": "MINIFY=true tsdown && echo '' && gzip-size dist/index.mjs dist/index.js",
"release": "commit-and-tag-version"
},
"keywords": [
"template"
],
"maintainers": [
{
"name": "CRIMX",
"email": "straybugs@gmail.com",
"url": "https://github.com/crimx/"
}
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"@wopjs/gzip-size": "^0.1.5",
"commit-and-tag-version": "^12.7.1",
"tsdown": "^0.21.7",
"typedoc": "^0.28.18",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "^4.0.4"
}
}