-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 KB
/
package.json
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
{
"name": "value-enhancer",
"version": "1.0.0",
"description": "Enhance value with plain and explicit reactive wrapper. Think of it as hook-style signals.",
"repository": "crimx/value-enhancer",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"author": {
"name": "CRIMX",
"email": "[email protected]",
"url": "https://github.com/crimx/"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"ts-check": "tsc --noEmit",
"docs": "typedoc --options typedoc.json && prettier --ignore-path .prettierignore --write docs",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "vitest --coverage",
"build": "tsup",
"build:min": "MINIFY=true tsup && node scripts/gzip.mjs",
"release": "commit-and-tag-version"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"adaptive-set": "<=0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-perfectionist": "^4.3.0",
"gzip-size": "^7.0.0",
"jest-extended": "^4.0.2",
"prettier": "^3.4.1",
"pretty-bytes": "^6.1.1",
"tsup": "^8.3.5",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.6",
"yoctocolors": "^2.1.1"
}
}