-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "bitf",
"version": "1.0.2",
"description": "A tiny utility to write and manage bit flags in JavaScript/TypeScript projects.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
}
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:check": "pnpm run build && pnpm run attw",
"dev": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"attw": "attw --pack .",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"bench": "tsx benchmark/index.ts",
"bench:bitf": "tsx benchmark/runner.ts --bitf",
"bench:json": "tsx benchmark/runner.ts --json",
"bench:gc": "node --expose-gc node_modules/.bin/tsx benchmark/index.ts",
"bench:watch": "tsx watch benchmark/index.ts",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,ts,json}": "biome check --write --no-errors-on-unmatched"
},
"keywords": [
"typescript",
"library",
"template"
],
"author": {
"email": "neg4n@icloud.com",
"name": "neg4n",
"url": "https://github.com/neg4n"
},
"license": "MIT",
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "2.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@vitest/coverage-v8": "3.2.4",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"semantic-release": "24.2.5",
"tinybench": "^5.0.0",
"tslib": "^2.8.1",
"tsx": "^4.20.4",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"vitest": "3.2.4"
}
}