-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.61 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@merged/react-solid",
"version": "1.0.1",
"description": "use solid-js Components inside react",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"private": false,
"homepage": "https://github.com/merged-js/react-solid",
"repository": {
"type": "git",
"url": "git+https://github.com/merged-js/react-solid.git"
},
"exports": {
".": {
"require": "./dist/cjs/Solid.js",
"default": "./dist/es/Solid.js"
},
"./plugin": {
"require": "./dist/cjs/narrowSolidPlugin.js",
"default": "./dist/es/narrowSolidPlugin.js"
}
},
"typesVersions": {
"*": {
"plugin": [
"./dist/types/narrowSolidPlugin.d.ts"
],
"*": [
"./dist/types/Solid.d.ts"
]
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint --ext ts,tsx --max-warnings 0 --cache src",
"release": "standard-version --no-verify --releaseCommitMessageFormat \"chore(release): Release v{{currentTag}} :rocket:\""
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags --no-verify origin master"
}
},
"keywords": [
"react",
"solid"
],
"author": "Torsten Blindert",
"license": "MIT",
"devDependencies": {
"@grapes-agency/eslint-config": "^1.5.7",
"@rollup/plugin-typescript": "^8.2.5",
"@rollup/pluginutils": "^4.1.1",
"@types/babel__core": "^7.1.15",
"@types/node": "^16.7.10",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.56.3",
"rollup-plugin-delete": "^2.0.0",
"solid-js": "^1.1.2",
"standard-version": "^9.3.1",
"typescript": "^4.4.2",
"vite-plugin-solid": "^2.0.3"
},
"peerDependencies": {
"@rollup/pluginutils": "^4.0.0",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"solid-js": "^1.1.2",
"vite-plugin-solid": "^2.0.0"
},
"peerDependenciesMeta": {
"vite-plugin-solid": {
"optional": true
},
"@rollup/pluginutils": {
"optional": true
}
},
"prettier": "@grapes-agency/eslint-config/prettier",
"eslintConfig": {
"extends": [
"@grapes-agency/eslint-config/rules/base",
"@grapes-agency/eslint-config/rules/prettier",
"@grapes-agency/eslint-config/rules/react"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"publishConfig": {
"access": "public"
}
}