-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 873 Bytes
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
{
"name": "c8n",
"version": "0.3.0",
"description": "A modern and functional kitchen sink collection library inspired by Kotlin, Ruby, and Rust.",
"author": "Oliver Rose <hello@olivermrose.com>",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsdown",
"test": "vitest",
"test:ui": "vitest --ui",
"bench": "vitest bench",
"lint": "oxfmt --check && oxlint .",
"lint:fix": "oxfmt && oxlint src/*.ts --fix",
"prepublish": "pnpm build"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@faker-js/faker": "^10.3.0",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.15.0",
"tsdown": "0.21.0-beta.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}