-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "project-name-here",
"version": "0.1.0",
"private": true,
"description": "Project description here.",
"repository": {
"type": "git",
"url": "git+https://repository/url/here.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Author Name Here <author.name.here@email.com>",
"type": "module",
"exports": {
".": "./dist/index.js",
"./lib/add": "./dist/lib/add.js",
"./lib/subtract": "./dist/lib/subtract.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch src",
"lint": "eslint --cache",
"lint:fix": "eslint --fix --cache",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:watch": "vitest",
"tsc": "tsc",
"tsc:watch": "tsc --watch"
},
"devDependencies": {
"@darkobits/eslint-config": "4.0.0-beta.7",
"@types/node": "^24.0.7",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.36.0",
"publint": "^0.3.12",
"tsdown": "^0.12.9",
"typescript": "^5.8.3",
"unplugin-unused": "^0.5.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"engineStrict": true
}