-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "@marco.spiess/enumset",
"description": "A specialized Set implementation for use with numerical enum types. All state is packed into a single 32-bit integer bitfield.",
"keywords": [
"enumset",
"enum",
"set",
"bitfield"
],
"version": "0.0.4",
"type": "module",
"files": [
"dist"
],
"main": "./dist/enumset.umd.cjs",
"module": "./dist/enumset.js",
"types": "./dist/enumset.d.ts",
"exports": {
".": {
"import": "./dist/enumset.js",
"require": "./dist/enumset.umd.cjs"
}
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src/",
"test": "vitest --typecheck --run",
"test:mutation": "stryker run",
"changeset": "changeset",
"release": "npm run build && changeset tag && npm publish --provenance --access public"
},
"private": false,
"author": "Marco Spieß <marco.spiess@proton.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mspiess/enumset.git"
},
"bugs": "https://github.com/mspiess/enumset/issues",
"homepage": "https://github.com/mspiess/enumset#readme",
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@eslint/js": "10.0.1",
"@eslint/markdown": "8.0.3",
"@microsoft/api-extractor": "7.58.12",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/typescript-checker": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "26.2.0",
"@vitest/coverage-v8": "4.1.10",
"@vitest/eslint-plugin": "1.6.27",
"eslint": "10.8.1",
"globals": "17.9.0",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0",
"unplugin-dts": "1.0.3",
"vite": "8.2.1",
"vite-plugin-doctest": "3.0.0",
"vitest": "4.1.10"
}
}