forked from mwood23/preact-island
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.74 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
{
"name": "solid-island",
"version": "0.0.1",
"type": "module",
"description": "Solid.js port of preact-island",
"source": "src/index.ts",
"files": [
"dist"
],
"main": "./dist/solid-island.umd.js",
"module": "./dist/solid-island.es.js",
"exports": {
".": {
"import": "./dist/solid-island.es.js",
"require": "./dist/solid-island.umd.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"start": "vite",
"dev": "cd example && vite",
"build": "vite build",
"serve": "cd example && vite build && vite preview",
"test": "vitest",
"postinstall": "node ./fix-jest-dom.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iainsimmons/solid-island.git"
},
"keywords": [
"preact",
"habitat",
"shopify",
"cms widgets"
],
"author": "Iain Simmons",
"license": "MIT",
"bugs": {
"url": "https://github.com/iainsimmons/solid-island/issues"
},
"homepage": "https://github.com/iainsimmons/solid-island#readme",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"solid"
],
"extends": [
"eslint:recommended",
"plugin:solid/typescript"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"solid-js": "^1.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.2.0",
"eslint-plugin-solid": "^0.4.7",
"eslint": "^8.15.0",
"jsdom": "^19.0.0",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"solid-testing-library": "^0.3.0",
"typescript": "^4.6.4",
"vite-plugin-solid": "^2.2.6",
"vite": "^2.9.9",
"vitest": "^0.12.7"
},
"peerDependencies": {}
}