-
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.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 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": "proto-utils",
"version": "1.5.2",
"description": "This package provides utilities for prototypes",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.esm.js",
"require": "./lib/index.js"
}
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "esbuild src/index.ts --bundle --platform=node --target=node14 --format=cjs --outfile=lib/index.js",
"build:esm": "esbuild src/index.ts --bundle --platform=node --target=node14 --format=esm --outfile=lib/index.esm.js",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir lib",
"test": "vitest run",
"format": "biome format --write",
"lint": "biome lint --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duetds/proto-utils.git"
},
"author": "LocalTapiola Services Ltd <duetdesignsystem@lahitapiola.fi>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/duetds/proto-utils/issues"
},
"homepage": "https://github.com/duetds/proto-utils#readme",
"dependencies": {
"finnish-ssn": "^2.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"@vitest/ui": "^4.0.6",
"esbuild": "^0.25.8",
"jsdom": "^27.4.0",
"typescript": "^5.8.3",
"vitest": "^4.0.6"
}
}