-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "obuild-starter",
"type": "module",
"version": "0.0.2",
"packageManager": "pnpm@10.12.1",
"description": "A starter for creating a obuild package.",
"author": "devgauravjatt",
"license": "MIT",
"homepage": "https://github.com/devgauravjatt/obuild-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/devgauravjatt/obuild-starter.git"
},
"bugs": {
"url": "https://github.com/devgauravjatt/obuild-starter/issues"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "obuild",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^4.14.1",
"@types/node": "^22.13.14",
"bumpp": "^10.1.1",
"eslint": "^9.29.0",
"obuild": "^0.2.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
}
}