-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
{
"name": "@pleisto/active-support",
"version": "1.5.8",
"description": "A TypeScript utility library designed to optimize for programmer happiness.",
"license": "Apache-2.0",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pleisto/active-support.git"
},
"bugs": {
"url": "https://github.com/pleisto/active-support"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"volta": {
"node": "24.11.1"
},
"engines": {
"node": ">=24"
},
"scripts": {
"lint": "run lint:eslint && run lint:type",
"lint:eslint": "TIMING=1 run eslint --cache src",
"lint:fix": "TIMING=1 run eslint src --fix",
"lint:type": "run tsc",
"build": "tsup --format esm,cjs --clean --dts",
"test": "run vitest run --coverage",
"test:watch": "run vitest --watch",
"test:bench": "run -vitest bench",
"tsdoc": "run typedoc --options typedoc.json --out ./docs/api ./src/index.ts"
},
"sideEffects": false,
"dependencies": {
"@lukeed/uuid": "^2.0.1",
"fast-deep-equal": "^3.1.3",
"moize": "^6.1.6",
"ms": "^3.0.0-canary.1",
"neverthrow": "^8.2.0",
"radash": "^12.1.1",
"ts-pattern": "^5.9.0",
"type-fest": "^5.2.0"
},
"devDependencies": {
"@pleisto/eslint-plugin": "2.5.3",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "^4.0.9",
"eslint": "9.39.1",
"prettier": "^3.6.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typedoc": "^0.28.14",
"typedoc-plugin-inline-sources": "^1.3.0",
"typescript": "5.9.3",
"vite": "7.2.2",
"vitest": "4.0.9"
},
"packageManager": "yarn@4.9.2"
}