-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "---name---",
"version": "1.0.0",
"files": [
"dist"
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"license": "MIT",
"description": "A minimal starter for small TypeScript libraries and packages.",
"repository": {
"type": "git",
"url": "---repo---"
},
"author": "Everett Morgan",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "yarn clean:dist && tsc -p tsconfig.build.json",
"clean": "rm -rf coverage dist",
"clean:dist": "rm -rf dist",
"lint": "eslint . --max-warnings=0",
"prepack": "yarn build",
"release": "npm publish",
"test": "yarn lint && yarn typecheck && yarn tests",
"test-publish": "npm pack --dry-run --cache .npm",
"tests": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.8.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"resolutions": {
"flatted@npm:^3.2.9": "npm:3.4.2",
"semver@npm:^6.0.0": "npm:6.3.1"
},
"packageManager": "yarn@4.14.1"
}