-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "indiepitcher",
"version": "1.4.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist/**"],
"keywords": [],
"author": "IndiePitcher",
"license": "MIT",
"description": "Node.js library for IndiePitcher",
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"test:watch": "jest --watch",
"format:apply": "biome check --apply .",
"format:check": "biome format .",
"format": "biome format --write .",
"lint": "biome check .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indiepitcher/indiepitcher-node.git"
},
"bugs": {
"url": "https://github.com/indiepitcher/indiepitcher-node/issues"
},
"homepage": "https://github.com/indiepitcher/indiepitcher-node",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
}
}