-
-
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.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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": "@nlib/negotiate",
"description": "An RFC-compliant HTTP content negotiation library.",
"publishConfig": {
"access": "public"
},
"version": "0.1.4",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://github.com/gjbkz"
},
"homepage": "https://github.com/nlibjs/negotiate",
"repository": "https://github.com/nlibjs/negotiate",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./mjs/mod.mjs",
"require": "./cjs/mod.cjs",
"types": "./types/mod.d.ts"
}
},
"files": [
"cjs",
"mjs",
"types",
"!**/*.test.*"
],
"scripts": {
"test": "npm run build:index && npm run test:type && npm run test:unit",
"test:type": "tsc",
"test:unit": "node --test \"src/**/*.test.ts\"",
"lint": "biome check",
"build": "npm run build:index && npm run build:types && npm run build:code",
"build:index": "node cli/generate-index.ts",
"build:types": "tsc --project tsconfig.types.json",
"build:code": "node cli/build.ts",
"version": "npm run version:sync-version && npm run version:add-jsr",
"version:sync-version": "node cli/sync-version.ts",
"version:add-jsr": "git add jsr.json"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@types/node": "25.2.3",
"typescript": "5.9.3"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}