-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 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
70
{
"name": "@fr0st/core",
"version": "4.0.0",
"description": "Small, focused utility library for arrays, functions, math, objects, strings, and type checks.",
"keywords": [
"utilities",
"utility",
"esm",
"tree-shaking",
"zero-dependency",
"array",
"function",
"math",
"object",
"string",
"dom",
"type-check",
"testing"
],
"homepage": "https://github.com/frost-js/core",
"bugs": {
"url": "https://github.com/frost-js/core/issues",
"email": "elusivecodes@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frost-js/core.git"
},
"license": "MIT",
"author": "Elusive <elusivecodes@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/frost-core.esm.js",
"default": "./dist/frost-core.esm.js"
},
"./dist/*": "./dist/*",
"./src/*": "./src/*"
},
"main": "./dist/frost-core.esm.js",
"jsdelivr": "./dist/frost-core.min.js",
"unpkg": "./dist/frost-core.min.js",
"module": "./dist/frost-core.esm.js",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "vite build",
"lint": "eslint",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@fr0st/eslint-config": "^5.0.3",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.9.1",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"publishConfig": {
"access": "public"
}
}