generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "solid-wrap-balancer",
"version": "0.0.5",
"private": false,
"description": "Simple Solid.js Component That Makes Titles More Readable",
"keywords": [
"solid"
],
"homepage": "https://github.com/nirtamir2/solid-wrap-balancer#readme",
"bugs": {
"url": "https://github.com/nirtamir2/solid-wrap-balancer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirtamir2/solid-wrap-balancer.git"
},
"license": "MIT",
"author": "nirtamir2",
"contributors": [],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"import": "./dist/esm/index.js",
"browser": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "vite serve dev",
"format": "prettier \"**/*\" --write --ignore-unknown",
"lint": "eslint --max-warnings 0 --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"prepublishOnly": "pnpm build",
"test": "echo \"test not setup\"",
"type-check": "tsc --noEmit",
"update-deps": "taze -w && pnpm i"
},
"lint-staged": {
"*.{ts,tsx,md}": "eslint --cache --fix",
"*.{ts,tsx,css,html,md}": "prettier --write"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@tsconfig/strictest": "^1.0.2",
"eslint": "^8.33.0",
"eslint-config-nirtamir2": "^0.0.47",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-packagejson": "^2.4.2",
"prettier-plugin-tailwindcss": "^0.2.2",
"rollup": "^2.77.2",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.6.10",
"taze": "^0.8.5",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-solid": "^2.5.0"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"packageManager": "pnpm@7.5.0"
}