generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.22 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
{
"version": "0.7.4",
"name": "solid-stripe",
"description": "Solid wrapper for Stripe.js",
"packageManager": "[email protected]",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "tsup --watch --onSuccess=\"pnpm --filter playground dev\"",
"build": "tsup",
"prepublishOnly": "pnpm build",
"release": "pnpm build && changeset publish",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"playground/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/solid-stripe.git"
},
"keywords": [
"stripe",
"elements",
"solid",
"typescript"
],
"author": "Robert Soriano <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/solid-stripe#readme",
"peerDependencies": {
"@stripe/stripe-js": "^1.44.1 || ^2.0.0 || ^3.0.0 || ^4.0.0",
"solid-js": "^1.6.0"
},
"devDependencies": {
"@alenaksu/json-viewer": "^2.0.1",
"@changesets/cli": "^2.27.8",
"@stripe/stripe-js": "^4.5.0",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"esbuild": "^0.23.1",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"solid-js": "^1.9.3",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20"
}
}