-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.04 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
{
"name": "reynard-core",
"version": "0.2.5",
"description": "Core utilities and modules for Reynard framework",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./modules": {
"types": "./dist/modules/index.d.ts",
"import": "./dist/modules/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build && rm -f tsconfig.tsbuildinfo && tsc -p tsconfig.json --declaration --emitDeclarationOnly",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:check": "vitest run --coverage --reporter=verbose",
"test:docs": "vitest run --config vitest.docs.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"clean": "rm -rf dist"
},
"dependencies": {
"@entropy-tamer/reynard-algorithms": "workspace:*",
"@entropy-tamer/reynard-validation": "workspace:*"
},
"optionalDependencies": {
"@entropy-tamer/reynard-i18n": "workspace:*"
},
"devDependencies": {
"@solidjs/testing-library": "0.8.10",
"@types/node": "24.9.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"happy-dom": "20.0.8",
"msw": "^2.11.6",
"@entropy-tamer/reynard-testing": "workspace:*",
"typescript": "5.9.3",
"vite": "7.2.2",
"vite-plugin-solid": "2.11.10",
"vitest": "3.2.4"
},
"peerDependencies": {
"solid-js": "1.9.10"
},
"license": "MIT",
"keywords": [
"reynard",
"typescript",
"utilities",
"framework"
],
"homepage": "https://github.com/entropy-tamer/reynard-core",
"bugs": "https://github.com/entropy-tamer/reynard-core/issues",
"repository": {
"type": "git",
"url": "https://github.com/entropy-tamer/reynard-core.git"
}
}