-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.4 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.4 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
{
"name": "@diba1013/solid.ify",
"version": "0.1.0",
"description": "A high level reactive wrapper around solid.js",
"keywords": [
"solid"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/diba1013/solid.ify.git"
},
"author": "diba1013",
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"type": "module",
"files": [
"dist"
],
"imports": {
"#lib/*": "./lib/*.ts"
},
"exports": {
"types": "./dist/library.d.ts",
"import": "./dist/library.js",
"require": "./dist/library.cjs"
},
"scripts": {
"prepare": "husky",
"build": "tscz",
"build:watch": "tscz --watch",
"test": "vitest run",
"test:types": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"peerDependencies": {
"solid-js": ">=1.0"
},
"dependencies": {
"hexoid": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@diba1013/linter": "^0.13.1",
"@diba1013/tscz": "^0.2.1",
"@solidjs/testing-library": "^0.8.10",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.24.0",
"happy-dom": "^17.4.4",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"solid-js": "^1.9.5",
"typescript": "^5.8.3",
"vite": "^6.2.5",
"vite-plugin-solid": "^2.11.6",
"vitest": "^3.1.1"
}
}