-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.21 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.21 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
{
"name": "simple",
"version": "1.1.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run build --watch\" \"bun run serve\"",
"serve-sdk": "concurrently \"bun run build --watch\" \"serve dist/index.js --single\"",
"build": "bun build index.ts --target=browser --outfile=dist/index.js",
"serve": "bun run --hot serve.ts",
"fmt": "prettier --write . --cache",
"fmt:check": "prettier --check . --cache",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"cleani": "rm -rf dist node_modules && bun i",
"prepare": "husky",
"publish": "bun run scripts/publish-cli.ts"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.16.0",
"@happy-dom/global-registrator": "^16.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/bun": "latest",
"@types/eslint": "^9.6.1",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"bun-types": "^1.1.42",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"picocolors": "^1.1.1",
"prettier": "^3.4.1",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"typescript-eslint": "^8.17.0"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"importOrder": [
"<THIRD_PARTY_MODULES>",
"",
"<TYPES>",
"<TYPES>^[@~]/(?!$).*$",
"",
"^[@~]/.*$",
"^[.]"
],
"overrides": [
{
"files": "*.html",
"options": {
"printWidth": 120
}
}
]
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write --cache"
],
"*.{ts,tsx,mdx}": [
"eslint --fix ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pay-simple/simple.git"
},
"bugs": {
"url": "https://github.com/pay-simple/simple/issues"
},
"homepage": "https://github.com/pay-simple/simple.git",
"keywords": [
"payment",
"simple"
]
}