-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@2bad/ts-lib-starter",
"version": "1.0.0",
"description": "",
"keywords": [
"template",
"typescript",
"starter"
],
"homepage": "https://github.com/2BAD/ts-lib-starter#readme",
"bugs": {
"url": "https://github.com/2BAD/ts-lib-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2BAD/ts-lib-starter.git"
},
"license": "MIT",
"author": "2BAD (https://github.com/2BAD)",
"contributors": [
{
"name": "Jason Hyde",
"email": "[email protected]",
"url": "https://github.com/mrhyde"
}
],
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "run-p build:*",
"postbuild": "run-s fix:alias fix:ext",
"build:swc": "swc ./source -d ./build --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"check": "run-p check:*",
"check:eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"check:biome": "biome check ./source",
"fix": "run-s fix:code fix:format",
"fix:alias": "tsc-alias -p tsconfig.build.json",
"fix:code": "run-s 'check:eslint -- --fix'",
"fix:ext": "tsfix",
"fix:format": "biome format --write ./source",
"prepublishOnly": "run-s build",
"preversion": "run-s check test build",
"test": "vitest run",
"test:integration": "vitest run integration --coverage",
"test:unit": "vitest run unit --coverage"
},
"devDependencies": {
"@2bad/axiom": "1.0.0-beta.9",
"@2bad/tsconfig": "3.0.1",
"@2bad/tsfix": "0.1.0",
"@biomejs/biome": "1.9.4",
"@swc/cli": "0.5.0",
"@swc/core": "1.8.0",
"@types/node": "22.8.7",
"@vitest/coverage-v8": "2.1.4",
"npm-run-all2": "6.2.6",
"rimraf": "6.0.1",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
}
}