generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.55 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "solid-color",
"version": "0.0.4",
"private": false,
"description": "",
"keywords": [
"solid",
"solid-component",
"color picker",
"colorpicker",
"picker",
"sketch",
"chrome",
"photoshop",
"material design",
"popup"
],
"homepage": "https://github.com/xbmlz/solid-color#readme",
"bugs": {
"url": "https://github.com/xbmlz/solid-color/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xbmlz/solid-color.git"
},
"license": "MIT",
"author": "xbmlz",
"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",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"minify": "terser --compress --mangle --module -- dist/cjs/index.js > dist/cjs/index.min.js",
"example:dev": "vite serve example",
"example:build": "vite build example",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"example/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "eslint . --ext .js,.ts,.tsx,.jsx --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --tag --push && npm publish",
"test": "vitest -c vitest.config.ts",
"typecheck": "tsc --noEmit",
"update-deps": "taze -w && pnpm i"
},
"devDependencies": {
"@solidjs/testing-library": "^0.6.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/lodash-es": "^4.17.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"bumpp": "^8.2.1",
"eslint": "^8.32.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-solid": "^0.9.3",
"jsdom": "^21.1.0",
"lodash-es": "^4.17.21",
"prettier": "2.7.1",
"rollup": "^2.77.2",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.4.8",
"taze": "^0.7.6",
"terser": "^5.16.3",
"tinycolor2": "^1.5.2",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vite-plugin-solid": "^2.3.0",
"vitest": "^0.27.3"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"packageManager": "pnpm@7.5.0"
}