generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.93 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
{
"version": "2.2.0",
"name": "tsup-preset-solid",
"description": "Preset for building your SolidJS package with tsup.",
"license": "MIT",
"author": "Damian Tarnawski <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/tsup-preset-solid.git"
},
"homepage": "https://github.com/solidjs-community/tsup-preset-solid#readme",
"bugs": {
"url": "https://github.com/solidjs-community/tsup-preset-solid/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"test not setup\"",
"build": "tsup",
"prepublish": "pnpm build",
"typecheck": "tsc --noEmit",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"example/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}"
},
"dependencies": {
"esbuild-plugin-solid": "^0.5.0"
},
"peerDependencies": {
"tsup": "^8.0.0"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"esbuild": "^0.19.2",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.48.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"prettier": "3.0.3",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"keywords": [
"solid",
"tsup",
"package",
"build",
"solidjs",
"solid-js"
],
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}