-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "cookie-es",
"version": "3.1.1",
"license": "MIT",
"repository": "unjs/cookie-es",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest --coverage",
"lint": "oxlint . && oxfmt --check src test",
"fmt": "automd && oxlint . --fix && oxfmt src test",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "pnpm lint && vitest run --coverage"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"cookie": "^1.1.1",
"eslint-config-unjs": "^0.6.2",
"magic-string": "^0.30.21",
"mitata": "^1.0.34",
"obuild": "^0.4.32",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"rolldown": "1.0.0-rc.13",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0"
}