-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "@tailwags/opaque",
"version": "0.0.1",
"description": "Opaque implementation",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/tailwags/opaque#readme",
"bugs": {
"url": "https://github.com/tailwags/opaque/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tailwags/opaque.git"
},
"author": "Matilde Morrone <contact@matilde.pet>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different ."
},
"devDependencies": {
"@prettier/plugin-oxc": "^0.1.2",
"@types/bun": "^1.3.3",
"@types/node": "^24.10.1",
"bumpp": "^10.3.2",
"prettier": "^3.7.3",
"tsdown": "^0.16.8",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}